| 2321 | // cppcheck-suppress naming-privateMemberVariable |
| 2322 | Token* forwardTok{}; |
| 2323 | void forwardLifetime(Token* tok, const TokenList& tokenlist, ErrorLogger& errorLogger, const Settings& settings) { |
| 2324 | forwardTok = tok; |
| 2325 | valueFlowForwardLifetime(tok, tokenlist, errorLogger, settings); |
| 2326 | } |
| 2327 | }; |
| 2328 | |
| 2329 | static bool hasBorrowingVariables(const std::list<Variable>& vars, const std::vector<const Token*>& args, int depth = 10) |
nothing calls this directly
no test coverage detected