Add StringUtils::CiComp operator

pull/167/head
scrawl 8 years ago
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…
Cancel
Save