Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chrchr-github committed Mar 27, 2024
1 parent 915bf0f commit 624bcd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tokenize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8653,8 +8653,8 @@ void Tokenizer::findGarbageCode() const
if (inner->str() == "{")
inner = inner->link();
else if (inner->str() == ";") {
if (tok->tokAt(-1) && tok->tokAt(-1)->isUpperCaseName())
unknownMacroError(tok->tokAt(-1))
if (tok->tokAt(-1) && tok->tokAt(-1)->isUpperCaseName())
unknownMacroError(tok->tokAt(-1));
else
syntaxError(inner);
}
Expand Down

0 comments on commit 624bcd0

Please sign in to comment.