Skip to content

Commit ab8257a

Browse files
fixup! Simplify boolbvt::set_to
1 parent b91f82b commit ab8257a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solvers/flattening/boolbv.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ void boolbvt::set_to(const exprt &expr, bool value)
636636
const auto equal_expr = expr_try_dynamic_cast<equal_exprt>(expr);
637637
if(value && equal_expr && !boolbv_set_equality_to_true(*equal_expr))
638638
return;
639-
return SUB::set_to(expr, value);
639+
SUB::set_to(expr, value);
640640
}
641641

642642
exprt boolbvt::make_bv_expr(const typet &type, const bvt &bv)

0 commit comments

Comments
 (0)