Skip to content

Commit 4a23ae7

Browse files
author
Daniel Kroening
committed
bugfix: missing eom
Without the eom, the error message isn't printed.
1 parent f6666ad commit 4a23ae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solvers/flattening/boolbv_with.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ void boolbvt::convert_with(
9898
return convert_with(ns.follow(type), op1, op2, prev_bv, next_bv);
9999

100100
error().source_location=type.source_location();
101-
error() << "unexpected with type: " << type.id();
101+
error() << "unexpected with type: " << type.id() << eom;
102102
throw 0;
103103
}
104104

0 commit comments

Comments
 (0)