| 46 | namespace cppcheck { |
| 47 | struct stricmp { |
| 48 | bool operator()(const std::string &lhs, const std::string &rhs) const { |
| 49 | return caseInsensitiveStringCompare(lhs,rhs) < 0; |
| 50 | } |
| 51 | }; |
| 52 | |
| 53 | namespace testing |
nothing calls this directly
no test coverage detected