Skip to content

Commit fa299c5

Browse files
authored
Merge pull request #8518 from diffblue/smt2-exception
SMT2: fix exception thrown when given unsupported expression
2 parents 8803555 + efffd44 commit fa299c5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/solvers/smt2/smt2_conv.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -2493,7 +2493,8 @@ void smt2_convt::convert_expr(const exprt &expr)
24932493
else
24942494
INVARIANT_WITH_DIAGNOSTICS(
24952495
false,
2496-
"smt2_convt::convert_expr should not be applied to unsupported type",
2496+
"smt2_convt::convert_expr should not be applied to unsupported "
2497+
"expression",
24972498
expr.id_string());
24982499
}
24992500

0 commit comments

Comments
 (0)