mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
parent
83f47bd84b
commit
ed17de56d2
|
@ -69,7 +69,7 @@ public:
|
|||
bool opt_stream_buffer::parse_token(char const* token) {
|
||||
skip_whitespace();
|
||||
char const* t = token;
|
||||
while (ch() == *t) {
|
||||
while (*t && ch() == *t) {
|
||||
next();
|
||||
++t;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue