| 124 | } |
| 125 | |
| 126 | void CheckLeakAutoVarImpl::deallocUseError(const Token *tok, const std::string &varname) const |
| 127 | { |
| 128 | const CheckMemoryLeakImpl c(mTokenizer, mSettings, mErrorLogger); |
| 129 | c.deallocuseError(tok, varname); |
| 130 | } |
| 131 | |
| 132 | void CheckLeakAutoVarImpl::deallocReturnError(const Token *tok, const Token *deallocTok, const std::string &varname) |
| 133 | { |
nothing calls this directly
no test coverage detected