| 380 | } |
| 381 | |
| 382 | void CheckIOImpl::fflushOnInputStreamError(const Token *tok, const std::string &varname) |
| 383 | { |
| 384 | reportError(tok, Severity::portability, |
| 385 | "fflushOnInputStream", "fflush() called on input stream '" + varname + "' may result in undefined behaviour on non-linux systems.", CWE398, Certainty::normal); |
| 386 | } |
| 387 | |
| 388 | void CheckIOImpl::ioWithoutPositioningError(const Token *tok) |
| 389 | { |
no test coverage detected