| 488 | } |
| 489 | |
| 490 | void CheckMemoryLeakInFunction::runChecks(const Tokenizer &tokenizer, ErrorLogger& errorLogger) |
| 491 | { |
| 492 | CheckMemoryLeakInFunctionImpl checkMemoryLeak(&tokenizer, tokenizer.getSettings(), errorLogger); |
| 493 | checkMemoryLeak.checkReallocUsage(); |
| 494 | } |
| 495 | |
| 496 | void CheckMemoryLeakInFunction::getErrorMessages(ErrorLogger& e, const Settings &settings) const |
| 497 | { |
nothing calls this directly
no test coverage detected