Treat checks as mutually exclusive

This commit is contained in:
Dmitry-Me 2015-09-04 10:42:26 +03:00
parent b49c5d7193
commit cd4f3cf8db
1 changed files with 2 additions and 2 deletions

View File

@ -850,10 +850,10 @@ void CheckOther::checkSuspiciousCaseInSwitch()
break;
if (Token::Match(tok2, "[;}{]"))
break;
if (tok2->str() == "?")
finding = nullptr;
if (Token::Match(tok2, "&&|%oror%"))
else if (Token::Match(tok2, "&&|%oror%"))
finding = tok2;
}
if (finding)