| 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 | }; |