3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 10:25:18 +00:00

Fix buffering issue in print_success for declare-datatype

This commit is contained in:
Moritz Kiefer 2018-04-03 11:57:31 +02:00
parent 21a3b9c8e2
commit 6b38edf102

View file

@ -949,8 +949,9 @@ namespace smt2 {
check_duplicate(d, line, pos);
d->commit(pm());
check_rparen_next("invalid end of datatype declaration, ')' expected");
check_rparen("invalid end of datatype declaration, ')' expected");
m_ctx.print_success();
next();
}