Merge pull request #116 from callumenator/dbg-stmnt-fix

debug/version = blah is treated as a statement
This commit is contained in:
Hackerpilot 2014-02-20 22:14:56 -08:00
commit dcc6c9e304
1 changed files with 1 additions and 1 deletions

View File

@ -6099,7 +6099,7 @@ protected:
return !peekIs(tok!"switch");
case tok!"debug":
case tok!"version":
return peekIs(tok!"=");
return !peekIs(tok!"=");
case tok!"synchronized":
if (peekIs(tok!"("))
return false;