Move CheckOther::checkComparisonFunctionIsAlwaysTrueOrFalse to Normal checking

This commit is contained in:
Daniel Marjamäki 2019-03-06 21:27:19 +01:00
parent 0bab9d778b
commit 17e73fd144
1 changed files with 1 additions and 1 deletions

View File

@ -89,6 +89,7 @@ public:
checkOther.checkRedundantCopy();
checkOther.clarifyCalculation();
checkOther.checkPassByReference();
checkOther.checkComparisonFunctionIsAlwaysTrueOrFalse();
}
/** @brief Run checks against the simplified token list */
@ -102,7 +103,6 @@ public:
checkOther.checkMisusedScopedObject();
checkOther.checkInvalidFree();
checkOther.checkComparisonFunctionIsAlwaysTrueOrFalse();
checkOther.checkAccessOfMovedVariable();
}