Skip to content

Commit a4b7dbc

Browse files
committed
Fix
1 parent 6d33b3e commit a4b7dbc

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
@@ -2012,7 +2012,7 @@ static bool isc_strConstructor(const Token* tok)
20122012
}
20132013
if (callTok->astOperand1()->str() == "(")
20142014
callTok = callTok->astOperand1();
2015-
else if (tok->astOperand2()->str() == "(")
2015+
else if (callTok->astOperand2()->str() == "(")
20162016
callTok = callTok->astOperand2();
20172017
break;
20182018
}

0 commit comments

Comments
 (0)