Skip to content

Commit fe6f64a

Browse files
committed
Fix
1 parent 85fc597 commit fe6f64a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/tokenize.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -8708,7 +8708,8 @@ void Tokenizer::findGarbageCode() const
87088708
syntaxError(tok);
87098709
if (Token::Match(tok, "typedef [,;:]"))
87108710
syntaxError(tok);
8711-
if (Token::Match(tok, "!|~ %comp%"))
8711+
if (Token::Match(tok, "!|~ %comp%") &&
8712+
!(isCPP() && tok->strAt(1) == ">" && Token::simpleMatch(tok->tokAt(-1), "operator")))
87128713
syntaxError(tok);
87138714
if (Token::Match(tok, "] %name%") && (!isCPP() || !(tok->tokAt(-1) && Token::simpleMatch(tok->tokAt(-2), "delete [")))) {
87148715
if (tok->next()->isUpperCaseName())

0 commit comments

Comments
 (0)