Skip to content

Commit c34272c

Browse files
Update checkstl.cpp
1 parent f282ea2 commit c34272c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/checkstl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1979,7 +1979,7 @@ static bool isc_strConcat(const Token* tok)
19791979
{
19801980
if (!tok->isBinaryOp() || !Token::simpleMatch(tok, "+"))
19811981
return false;
1982-
for (const Token* op : { tok->astOperand1(), tok->astOperand2() }) {
1982+
for (const Token* op : { tok->astOperand1(), tok->astOperand2() }) { // NOLINT(readability-use-anyofallof)
19831983
const Token* sibling = op->astSibling();
19841984
if (!sibling->valueType())
19851985
continue;

0 commit comments

Comments
 (0)