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