Skip to content

Commit df2a281

Browse files
Update tokenize.cpp
1 parent 673489e commit df2a281

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/tokenize.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3605,7 +3605,7 @@ void Tokenizer::concatenateNegativeNumberAndAnyPositive()
36053605
if (!Token::Match(tok, "?|:|,|(|[|{|return|case|sizeof|%op% +|-") || tok->tokType() == Token::eIncDecOp)
36063606
continue;
36073607

3608-
if (tok->str() == ">" && tok->findOpeningBracket())
3608+
if (tok->findOpeningBracket())
36093609
continue;
36103610

36113611
while (tok->str() != ">" && tok->next() && tok->strAt(1) == "+" && (!Token::Match(tok->tokAt(2), "%name% (|;") || Token::Match(tok, "%op%")))

0 commit comments

Comments
 (0)