Skip to content

Commit cb4d291

Browse files
smowtontautschnig
authored andcommitted
Fix terminology now that base_type_eq is no longer used
No functional changes
1 parent e362ef7 commit cb4d291

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/solvers/flattening/boolbv_equality.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Author: Daniel Kroening, [email protected]
1717

1818
literalt boolbvt::convert_equality(const equal_exprt &expr)
1919
{
20-
const bool is_base_type_eq = expr.lhs().type() == expr.rhs().type();
20+
const bool equality_types_match = expr.lhs().type() == expr.rhs().type();
2121
DATA_INVARIANT_WITH_DIAGNOSTICS(
22-
is_base_type_eq,
22+
equality_types_match,
2323
"types of expressions on each side of equality should match",
2424
irep_pretty_diagnosticst{expr.lhs()},
2525
irep_pretty_diagnosticst{expr.rhs()});

0 commit comments

Comments
 (0)