Moved CheckAutoVariables::autoVariables to normal checking
This commit is contained in:
parent
38d5712aaa
commit
5a32d2d017
|
@ -54,11 +54,13 @@ public:
|
||||||
checkAutoVariables.assignFunctionArg();
|
checkAutoVariables.assignFunctionArg();
|
||||||
checkAutoVariables.returnReference();
|
checkAutoVariables.returnReference();
|
||||||
checkAutoVariables.checkVarLifetime();
|
checkAutoVariables.checkVarLifetime();
|
||||||
|
checkAutoVariables.autoVariables();
|
||||||
}
|
}
|
||||||
|
|
||||||
void runSimplifiedChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger) OVERRIDE {
|
void runSimplifiedChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger) OVERRIDE {
|
||||||
CheckAutoVariables checkAutoVariables(tokenizer, settings, errorLogger);
|
(void)tokenizer;
|
||||||
checkAutoVariables.autoVariables();
|
(void)settings;
|
||||||
|
(void)errorLogger;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** assign function argument */
|
/** assign function argument */
|
||||||
|
|
Loading…
Reference in New Issue