| 1670 | } |
| 1671 | |
| 1672 | std::vector<ValueFlow::LifetimeToken> ValueFlow::getLifetimeTokens(const Token* tok, const Settings& settings, bool escape, ErrorPath errorPath) |
| 1673 | { |
| 1674 | return getLifetimeTokens(tok, escape, std::move(errorPath), [](const Token*) { |
| 1675 | return false; |
| 1676 | }, settings); |
| 1677 | } |
| 1678 | |
| 1679 | bool ValueFlow::hasLifetimeToken(const Token* tok, const Token* lifetime, const Settings& settings) |
| 1680 | { |
nothing calls this directly
no test coverage detected