fix [tokenize.cpp:6353]: (style) Checking if unsigned variable 'indentlevel' is less than zero.

This commit is contained in:
Robert Reif 2011-08-13 12:47:16 -04:00
parent 51102ee076
commit 136c617a99
1 changed files with 1 additions and 1 deletions

View File

@ -6350,7 +6350,7 @@ void Tokenizer::simplifyIfAssign()
++indentlevel;
else if (tok2->str() == ")")
{
if (indentlevel <= 0)
if (indentlevel == 0)
break;
--indentlevel;
}