diff options
Diffstat (limited to 'build/b.cxx')
-rw-r--r-- | build/b.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build/b.cxx b/build/b.cxx index 2193ff5..d72fdfb 100644 --- a/build/b.cxx +++ b/build/b.cxx @@ -165,7 +165,9 @@ main (int argc, char* argv[]) token_type tt (l.next ().type); - if (tt != token_type::equal && tt != token_type::plus_equal) + if (tt != token_type::equal && + tt != token_type::equal_plus && + tt != token_type::plus_equal) break; parser p; |