We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85fc597 commit fe6f64aCopy full SHA for fe6f64a
lib/tokenize.cpp
@@ -8708,7 +8708,8 @@ void Tokenizer::findGarbageCode() const
8708
syntaxError(tok);
8709
if (Token::Match(tok, "typedef [,;:]"))
8710
8711
- if (Token::Match(tok, "!|~ %comp%"))
+ if (Token::Match(tok, "!|~ %comp%") &&
8712
+ !(isCPP() && tok->strAt(1) == ">" && Token::simpleMatch(tok->tokAt(-1), "operator")))
8713
8714
if (Token::Match(tok, "] %name%") && (!isCPP() || !(tok->tokAt(-1) && Token::simpleMatch(tok->tokAt(-2), "delete [")))) {
8715
if (tok->next()->isUpperCaseName())
0 commit comments