| 818 | } |
| 819 | |
| 820 | void CheckAutoVariables::runChecks(const Tokenizer &tokenizer, ErrorLogger& errorLogger) |
| 821 | { |
| 822 | CheckAutoVariablesImpl checkAutoVariables(&tokenizer, tokenizer.getSettings(), errorLogger); |
| 823 | checkAutoVariables.assignFunctionArg(); |
| 824 | checkAutoVariables.autoVariables(); |
| 825 | checkAutoVariables.checkVarLifetime(); |
| 826 | } |
| 827 | |
| 828 | void CheckAutoVariables::getErrorMessages(ErrorLogger& errorLogger, const Settings &settings) const |
| 829 | { |
nothing calls this directly
no test coverage detected