mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 10:55:50 +00:00
Prefer using empty rather than size comparisons.
This commit is contained in:
parent
a83097d5cc
commit
e570940662
56 changed files with 104 additions and 104 deletions
|
@ -41,7 +41,7 @@ static void tst1() {
|
|||
v1.pop_back();
|
||||
}
|
||||
ENSURE(v1.empty());
|
||||
ENSURE(v1.size() == 0);
|
||||
ENSURE(v1.empty());
|
||||
unsigned i = 1000000000;
|
||||
while (true) {
|
||||
std::cout << "resize " << i << "\n";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue