We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 673489e commit df2a281Copy full SHA for df2a281
1 file changed
lib/tokenize.cpp
@@ -3605,7 +3605,7 @@ void Tokenizer::concatenateNegativeNumberAndAnyPositive()
3605
if (!Token::Match(tok, "?|:|,|(|[|{|return|case|sizeof|%op% +|-") || tok->tokType() == Token::eIncDecOp)
3606
continue;
3607
3608
- if (tok->str() == ">" && tok->findOpeningBracket())
+ if (tok->findOpeningBracket())
3609
3610
3611
while (tok->str() != ">" && tok->next() && tok->strAt(1) == "+" && (!Token::Match(tok->tokAt(2), "%name% (|;") || Token::Match(tok, "%op%")))
0 commit comments