File tree 1 file changed +8
-9
lines changed
1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -8790,20 +8790,19 @@ void Tokenizer::findGarbageCode() const
8790
8790
continue;
8791
8791
if (!tok->tokAt(2) || tok->tokAt(2)->isLiteral())
8792
8792
syntaxError(tok);
8793
- if (tok->previous() && !Token::Match(tok->previous(), ":|;|{|}|)|>|\"C++\"")) {
8793
+ if (tok->previous() && !Token::Match(tok->previous(), ":|,| ;|{|}|)|< |>|\"C++\"")) {
8794
8794
if (tok->previous()->isUpperCaseName())
8795
8795
unknownMacroError(tok->previous());
8796
8796
else
8797
8797
syntaxError(tok);
8798
8798
}
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);
8807
8806
}
8808
8807
}
8809
8808
You can’t perform that action at this time.
0 commit comments