3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-02 21:37:02 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-09-06 15:07:43 +03:00
parent 8ec6219010
commit bc723fbe89
2 changed files with 1 additions and 2 deletions

View file

@ -260,7 +260,7 @@ namespace smt2 {
throw scanner_exception("invalid empty bit-vector literal", m_line, m_spos);
return BV_TOKEN;
}
else if ('|') {
else if (c == '|') {
read_multiline_comment();
return NULL_TOKEN;
}