| 1379 | |
| 1380 | const Scope *findScope(const Token *tok, const Scope *startScope) const; |
| 1381 | Scope *findScope(const Token *tok, Scope *startScope) { |
| 1382 | return const_cast<Scope *>(this->findScope(tok, static_cast<const Scope *>(startScope))); |
| 1383 | } |
| 1384 | |
| 1385 | // cppcheck-suppress unusedFunction |
| 1386 | bool isVarId(nonneg int varid) const { |
no test coverage detected