| 425 | } |
| 426 | |
| 427 | void CheckIOImpl::incompatibleFileOpenError(const Token *tok, const std::string &filename) |
| 428 | { |
| 429 | reportError(tok, Severity::warning, |
| 430 | "incompatibleFileOpen", "The file '" + filename + "' is opened for read and write access at the same time on different streams", CWE664, Certainty::normal); |
| 431 | } |
| 432 | |
| 433 | |
| 434 | //--------------------------------------------------------------------------- |
no test coverage detected