Moved CheckOther::clarifyCalculation to normal checking

This commit is contained in:
Daniel Marjamäki 2019-03-06 20:43:28 +01:00
parent ee9053f219
commit 572d7eb86c
1 changed files with 1 additions and 1 deletions

View File

@ -87,6 +87,7 @@ public:
checkOther.checkIncompleteStatement();
checkOther.checkPipeParameterSize();
checkOther.checkRedundantCopy();
checkOther.clarifyCalculation();
}
/** @brief Run checks against the simplified token list */
@ -94,7 +95,6 @@ public:
CheckOther checkOther(tokenizer, settings, errorLogger);
// Checks
checkOther.clarifyCalculation();
checkOther.clarifyStatement();
checkOther.checkPassByReference();
checkOther.checkCastIntToCharAndBack();