Move CheckOther::checkComparisonFunctionIsAlwaysTrueOrFalse to Normal checking
This commit is contained in:
parent
0bab9d778b
commit
17e73fd144
|
@ -89,6 +89,7 @@ public:
|
||||||
checkOther.checkRedundantCopy();
|
checkOther.checkRedundantCopy();
|
||||||
checkOther.clarifyCalculation();
|
checkOther.clarifyCalculation();
|
||||||
checkOther.checkPassByReference();
|
checkOther.checkPassByReference();
|
||||||
|
checkOther.checkComparisonFunctionIsAlwaysTrueOrFalse();
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @brief Run checks against the simplified token list */
|
/** @brief Run checks against the simplified token list */
|
||||||
|
@ -102,7 +103,6 @@ public:
|
||||||
checkOther.checkMisusedScopedObject();
|
checkOther.checkMisusedScopedObject();
|
||||||
|
|
||||||
checkOther.checkInvalidFree();
|
checkOther.checkInvalidFree();
|
||||||
checkOther.checkComparisonFunctionIsAlwaysTrueOrFalse();
|
|
||||||
checkOther.checkAccessOfMovedVariable();
|
checkOther.checkAccessOfMovedVariable();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue