mirror of
https://github.com/Z3Prover/z3
synced 2025-06-19 04:13:38 +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
|
@ -238,7 +238,7 @@ class reduce_hypotheses {
|
|||
{ args.push_back(fact); }
|
||||
|
||||
|
||||
if (args.size() == 0) { return pf; }
|
||||
if (args.empty()) { return pf; }
|
||||
else if (args.size() == 1) {
|
||||
lemma = args.get(0);
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue