fix [tokenize.cpp:6353]: (style) Checking if unsigned variable 'indentlevel' is less than zero.
This commit is contained in:
parent
51102ee076
commit
136c617a99
|
@ -6350,7 +6350,7 @@ void Tokenizer::simplifyIfAssign()
|
|||
++indentlevel;
|
||||
else if (tok2->str() == ")")
|
||||
{
|
||||
if (indentlevel <= 0)
|
||||
if (indentlevel == 0)
|
||||
break;
|
||||
--indentlevel;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue