Fixed gcc compiler warning

This commit is contained in:
Daniel Marjamäki 2010-05-21 12:13:05 +02:00
parent a8921afcd7
commit 89ec49508d
1 changed files with 1 additions and 1 deletions

View File

@ -1513,7 +1513,7 @@ bool Tokenizer::tokenize(std::istream &code, const char FileName[], const std::s
// "if (not p)" => "if (!p)"
// "if (p and q)" => "if (p && q)"
// "if (p or q)" => "if (p || q)"
while (simplifyLogicalOperators());
while (simplifyLogicalOperators()) { }
//updateClassList();
setVarId();