Skip to content

Commit 8d2c352

Browse files
Update tokenize.cpp
1 parent c2934e7 commit 8d2c352

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

lib/tokenize.cpp

+8-9
Original file line numberDiff line numberDiff line change
@@ -8790,20 +8790,19 @@ void Tokenizer::findGarbageCode() const
87908790
continue;
87918791
if (!tok->tokAt(2) || tok->tokAt(2)->isLiteral())
87928792
syntaxError(tok);
8793-
if (tok->previous() && !Token::Match(tok->previous(), ":|;|{|}|)|>|\"C++\"")) {
8793+
if (tok->previous() && !Token::Match(tok->previous(), ":|,|;|{|}|)|<|>|\"C++\"")) {
87948794
if (tok->previous()->isUpperCaseName())
87958795
unknownMacroError(tok->previous());
87968796
else
87978797
syntaxError(tok);
87988798
}
8799-
const Token * const tok1 = tok;
8800-
tok = tok->next()->findClosingBracket();
8801-
if (!tok)
8802-
syntaxError(tok1);
8803-
if (!Token::Match(tok, ">|>> ::|...| %name%") &&
8804-
!Token::Match(tok, ">|>> [ [ %name%") &&
8805-
!Token::Match(tok, "> >|*"))
8806-
syntaxError(tok->next() ? tok->next() : tok1);
8799+
const Token * const tok1 = tok->next()->findClosingBracket();
8800+
if (!tok1)
8801+
syntaxError(tok);
8802+
if (!Token::Match(tok1, ">|>> ::|...| %name%") &&
8803+
!Token::Match(tok1, ">|>> [ [ %name%") &&
8804+
!Token::Match(tok1, "> >|*"))
8805+
syntaxError(tok1->next() ? tok1->next() : tok);
88078806
}
88088807
}
88098808

0 commit comments

Comments
 (0)