1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 12:54:00 +00:00

Add StringUtils::CiComp operator

This commit is contained in:
scrawl 2017-02-23 17:49:37 +01:00
parent 25ca89b560
commit 1d6b5b2a52

View File

@ -106,6 +106,14 @@ public:
lowerCaseInPlace(out); lowerCaseInPlace(out);
return out; return out;
} }
struct CiComp
{
bool operator()(const std::string& left, const std::string& right) const
{
return ciLess(left, right);
}
};
}; };
} }