mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
remove braces
This commit is contained in:
parent
18f14921ba
commit
17913f3ec8
|
@ -267,10 +267,9 @@ namespace qe {
|
|||
continue;
|
||||
}
|
||||
|
||||
for (expr* f : *a) {
|
||||
for (expr* f : *a)
|
||||
if (!mark.is_marked(f))
|
||||
todo.push_back(f);
|
||||
}
|
||||
todo.push_back(f);
|
||||
|
||||
bool is_boolop =
|
||||
(a->get_family_id() == m.get_basic_family_id()) &&
|
||||
|
|
Loading…
Reference in a new issue