MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / FindFullName

Class FindFullName

lib/templatesimplifier.cpp:87–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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
98TemplateSimplifier::TokenAndName::TokenAndName(Token *token, std::string scope) :

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected