CheckBool: Use normal checking
This commit is contained in:
parent
ac42382cd9
commit
5a42c54d0f
|
@ -59,13 +59,6 @@ public:
|
|||
checkBool.checkAssignBoolToFloat();
|
||||
checkBool.pointerArithBool();
|
||||
checkBool.returnValueOfFunctionReturningBool();
|
||||
}
|
||||
|
||||
/** @brief Run checks against the simplified token list */
|
||||
void runSimplifiedChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger) OVERRIDE {
|
||||
CheckBool checkBool(tokenizer, settings, errorLogger);
|
||||
|
||||
// Checks
|
||||
checkBool.checkComparisonOfFuncReturningBool();
|
||||
checkBool.checkComparisonOfBoolWithBool();
|
||||
checkBool.checkIncrementBoolean();
|
||||
|
@ -73,6 +66,13 @@ public:
|
|||
checkBool.checkBitwiseOnBoolean();
|
||||
}
|
||||
|
||||
/** @brief Run checks against the simplified token list */
|
||||
void runSimplifiedChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger) OVERRIDE {
|
||||
(void)tokenizer;
|
||||
(void)settings;
|
||||
(void)errorLogger;
|
||||
}
|
||||
|
||||
/** @brief %Check for comparison of function returning bool*/
|
||||
void checkComparisonOfFuncReturningBool();
|
||||
|
||||
|
|
Loading…
Reference in New Issue