| 159 | } |
| 160 | |
| 161 | bool CaselessCmp::cmpLess(const std::string::value_type &a, const std::string::value_type &b) |
| 162 | { |
| 163 | // should use std::tolower but not in all versions of libstdc++ have it |
| 164 | return tolower(a) < tolower(b); |
| 165 | } |
| 166 | |
| 167 | } // namespace deskflow::string |
nothing calls this directly
no outgoing calls
no test coverage detected