| 6499 | } |
| 6500 | |
| 6501 | const Scope* Scope::findRecordInNestedList(const std::string & name, bool isC) const |
| 6502 | { |
| 6503 | std::set<const Scope*> visited; |
| 6504 | return findRecordInNestedListImpl<const Scope, const Type>(*this, name, isC, visited); |
| 6505 | } |
| 6506 | |
| 6507 | Scope* Scope::findRecordInNestedList(const std::string & name, bool isC) |
| 6508 | { |
no outgoing calls
no test coverage detected