diff options
Diffstat (limited to 'src/token.cc')
-rw-r--r-- | src/token.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/token.cc b/src/token.cc index 11fda7d7..deaa777e 100644 --- a/src/token.cc +++ b/src/token.cc @@ -368,6 +368,11 @@ void expr_t::token_t::next(std::istream& in, const uint_least8_t pflags) kind = COMMA; break; + case ';': + in.get(c); + kind = SEMI; + break; + default: { istream_pos_type pos = in.tellg(); |