| 1640 | } |
| 1641 | |
| 1642 | void CheckClassImpl::memsetErrorReference(const Token *tok, const std::string &memfunc, const std::string &type) |
| 1643 | { |
| 1644 | reportError(tok, Severity::error, "memsetClassReference", |
| 1645 | "$symbol:" + memfunc +"\n" |
| 1646 | "Using '" + memfunc + "' on " + type + " that contains a reference.", CWE665, Certainty::normal); |
| 1647 | } |
| 1648 | |
| 1649 | void CheckClassImpl::memsetErrorFloat(const Token *tok, const std::string &type) |
| 1650 | { |
no test coverage detected