Moved CheckString::checkIncorrectStringCompare from runSimplifiedChecks to runChecks

This commit is contained in:
Daniel Marjamäki 2019-02-25 09:08:16 +01:00
parent 09d505219c
commit 4218698fb1
1 changed files with 1 additions and 1 deletions

View File

@ -58,6 +58,7 @@ public:
checkString.checkSuspiciousStringCompare();
checkString.stringLiteralWrite();
checkString.overlappingStrcmp();
checkString.checkIncorrectStringCompare();
}
/** @brief Run checks against the simplified token list */
@ -65,7 +66,6 @@ public:
CheckString checkString(tokenizer, settings, errorLogger);
// Checks
checkString.checkIncorrectStringCompare();
checkString.checkAlwaysTrueOrFalseStringCompare();
checkString.sprintfOverlappingData();
}