mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
parent
83f47bd84b
commit
ed17de56d2
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue