Remove duplicate check

This commit is contained in:
Dmitry-Me 2015-12-02 17:28:21 +03:00
parent 423b254772
commit 0a3959f201
1 changed files with 5 additions and 4 deletions

View File

@ -137,12 +137,13 @@ void CheckOther::clarifyCalculation()
for (; tok2; tok2 = tok2->next()) {
if (tok2->str() == "(")
tok2 = tok2->link();
else if (tok2->str() == ")" || tok2->str() == "?")
else if (tok2->str() == ")")
break;
else if (tok2->str() == "?") {
clarifyCalculationError(tok, tok->astOperand1()->str());
break;
}
}
if (tok2 && tok2->str() == "?")
clarifyCalculationError(tok, tok->astOperand1()->str());
}
}
}