| 1681 | } |
| 1682 | |
| 1683 | void CheckClassImpl::checkReturnPtrThis(const Scope *scope, const Function *func, const Token *tok, const Token *last) |
| 1684 | { |
| 1685 | std::set<const Function*> analyzedFunctions; |
| 1686 | checkReturnPtrThis(scope, func, tok, last, analyzedFunctions); |
| 1687 | } |
| 1688 | |
| 1689 | void CheckClassImpl::checkReturnPtrThis(const Scope *scope, const Function *func, const Token *tok, const Token *last, std::set<const Function*>& analyzedFunctions) |
| 1690 | { |
nothing calls this directly
no test coverage detected