diff --git a/components/misc/stringops.hpp b/components/misc/stringops.hpp index 2723527f1..b14051a81 100644 --- a/components/misc/stringops.hpp +++ b/components/misc/stringops.hpp @@ -106,6 +106,14 @@ public: lowerCaseInPlace(out); return out; } + + struct CiComp + { + bool operator()(const std::string& left, const std::string& right) const + { + return ciLess(left, right); + } + }; }; }