| 6627 | } |
| 6628 | |
| 6629 | static const Scope* getFunctionScope(const Scope* scope) { |
| 6630 | while (scope && scope->type != ScopeType::eFunction) |
| 6631 | scope = scope->nestedIn; |
| 6632 | return scope; |
| 6633 | } |
| 6634 | |
| 6635 | static void valueFlowContainerSize(const TokenList& tokenlist, |
| 6636 | const SymbolDatabase& symboldatabase, |
no outgoing calls
no test coverage detected