Skip to content

Commit b439444

Browse files
fixup! Use standard algorithm for finding an element
1 parent f09ff9b commit b439444

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/solvers/prop/prop_conv.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -369,9 +369,7 @@ void prop_conv_solvert::set_to(const exprt &expr, bool value)
369369
const bool has_only_boolean_operands = std::all_of(
370370
expr.operands().begin(),
371371
expr.operands().end(),
372-
[](const exprt &expr) { // NOLINT
373-
return expr.type().id() == ID_bool;
374-
});
372+
[](const exprt &expr) { return expr.type().id() == ID_bool; });
375373

376374
if(has_only_boolean_operands)
377375
{

0 commit comments

Comments
 (0)