Skip to content

Commit 17913f3

Browse files
remove braces
1 parent 18f1492 commit 17913f3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/qe/qsat.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -267,10 +267,9 @@ namespace qe {
267267
continue;
268268
}
269269

270-
for (expr* f : *a) {
270+
for (expr* f : *a)
271271
if (!mark.is_marked(f))
272-
todo.push_back(f);
273-
}
272+
todo.push_back(f);
274273

275274
bool is_boolop =
276275
(a->get_family_id() == m.get_basic_family_id()) &&

0 commit comments

Comments
 (0)