| 499 | } |
| 500 | |
| 501 | void CheckSizeof::runChecks(const Tokenizer& tokenizer, ErrorLogger& errorLogger) |
| 502 | { |
| 503 | CheckSizeofImpl checkSizeof(&tokenizer, tokenizer.getSettings(), errorLogger); |
| 504 | |
| 505 | // Checks |
| 506 | checkSizeof.sizeofsizeof(); |
| 507 | checkSizeof.sizeofCalculation(); |
| 508 | checkSizeof.sizeofFunction(); |
| 509 | checkSizeof.suspiciousSizeofCalculation(); |
| 510 | checkSizeof.checkSizeofForArrayParameter(); |
| 511 | checkSizeof.checkSizeofForPointerSize(); |
| 512 | checkSizeof.checkSizeofForNumericParameter(); |
| 513 | checkSizeof.sizeofVoid(); |
| 514 | } |
| 515 | |
| 516 | void CheckSizeof::getErrorMessages(ErrorLogger& errorLogger, const Settings& settings) const |
| 517 | { |
nothing calls this directly
no test coverage detected