1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-03 09:19:41 +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);
return out;
}
struct CiComp
{
bool operator()(const std::string& left, const std::string& right) const
{
return ciLess(left, right);
}
};
};
}