| 472 | } |
| 473 | |
| 474 | void CheckString::runChecks(const Tokenizer &tokenizer, ErrorLogger& errorLogger) |
| 475 | { |
| 476 | CheckStringImpl checkString(&tokenizer, tokenizer.getSettings(), errorLogger); |
| 477 | |
| 478 | // Checks |
| 479 | checkString.strPlusChar(); |
| 480 | checkString.checkSuspiciousStringCompare(); |
| 481 | checkString.stringLiteralWrite(); |
| 482 | checkString.overlappingStrcmp(); |
| 483 | checkString.checkIncorrectStringCompare(); |
| 484 | checkString.sprintfOverlappingData(); |
| 485 | checkString.checkAlwaysTrueOrFalseStringCompare(); |
| 486 | } |
| 487 | |
| 488 | void CheckString::getErrorMessages(ErrorLogger& errorLogger, const Settings &settings) const |
| 489 | { |
nothing calls this directly
no test coverage detected