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:
parent
25ca89b560
commit
1d6b5b2a52
@ -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);
|
||||||
|
}
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user