Moved CheckOther::checkRedundantCopy() to normal checking

This commit is contained in:
Daniel Marjamäki 2019-03-06 20:37:30 +01:00
parent 6228ea2266
commit ee9053f219
1 changed files with 1 additions and 1 deletions

View File

@ -86,6 +86,7 @@ public:
checkOther.checkComparePointers();
checkOther.checkIncompleteStatement();
checkOther.checkPipeParameterSize();
checkOther.checkRedundantCopy();
}
/** @brief Run checks against the simplified token list */
@ -101,7 +102,6 @@ public:
checkOther.checkMisusedScopedObject();
checkOther.checkInvalidFree();
checkOther.checkRedundantCopy();
checkOther.checkComparisonFunctionIsAlwaysTrueOrFalse();
checkOther.checkAccessOfMovedVariable();
}