Error message for bad iterator usage..
| 353 | |
| 354 | // Error message for bad iterator usage.. |
| 355 | void CheckStlImpl::invalidIteratorError(const Token *tok, const std::string &iteratorName) |
| 356 | { |
| 357 | reportError(tok, Severity::error, "invalidIterator1", "$symbol:"+iteratorName+"\nInvalid iterator: $symbol", CWE664, Certainty::normal); |
| 358 | } |
| 359 | |
| 360 | void CheckStlImpl::iteratorsError(const Token* tok, const std::string& containerName1, const std::string& containerName2) |
| 361 | { |
no test coverage detected