Skip to content

Commit efffd44

Browse files
committed
SMT2: fix exception thrown when given unsupported expression
1 parent 162e0f7 commit efffd44

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/solvers/smt2/smt2_conv.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2483,7 +2483,8 @@ void smt2_convt::convert_expr(const exprt &expr)
24832483
else
24842484
INVARIANT_WITH_DIAGNOSTICS(
24852485
false,
2486-
"smt2_convt::convert_expr should not be applied to unsupported type",
2486+
"smt2_convt::convert_expr should not be applied to unsupported "
2487+
"expression",
24872488
expr.id_string());
24882489
}
24892490

0 commit comments

Comments
 (0)