| 154 | } |
| 155 | |
| 156 | bool CaselessCmp::equal(const std::string &a, const std::string &b) |
| 157 | { |
| 158 | return !(less(a, b) || less(b, a)); |
| 159 | } |
| 160 | |
| 161 | bool CaselessCmp::cmpLess(const std::string::value_type &a, const std::string::value_type &b) |
| 162 | { |
nothing calls this directly
no outgoing calls
no test coverage detected