| 85 | }; |
| 86 | |
| 87 | class FindFullName { |
| 88 | public: |
| 89 | explicit FindFullName(std::string fullName) : mFullName(std::move(fullName)) {} |
| 90 | bool operator()(const TemplateSimplifier::TokenAndName &tokenAndName) const { |
| 91 | return tokenAndName.fullName() == mFullName; |
| 92 | } |
| 93 | private: |
| 94 | const std::string mFullName; |
| 95 | }; |
| 96 | } |
| 97 | |
| 98 | TemplateSimplifier::TokenAndName::TokenAndName(Token *token, std::string scope) : |
no outgoing calls
no test coverage detected