| 322 | } |
| 323 | |
| 324 | void CheckStringImpl::incorrectStringCompareError(const Token *tok, const std::string& func, const std::string &string) |
| 325 | { |
| 326 | reportError(tok, Severity::warning, "incorrectStringCompare", "$symbol:" + func + "\nString literal " + string + " doesn't match length argument for $symbol().", CWE570, Certainty::normal); |
| 327 | } |
| 328 | |
| 329 | void CheckStringImpl::incorrectStringBooleanError(const Token *tok, const std::string& string) |
| 330 | { |
no test coverage detected