Skip to content

Commit

Permalink
remove braces
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Dec 4, 2023
1 parent 18f1492 commit 17913f3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/qe/qsat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()) &&
Expand Down

0 comments on commit 17913f3

Please sign in to comment.