X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fucioption.cpp;h=7b8799c48dcec9285c5d5bc10276e07619880515;hb=c2d42ea8339b49e52a116e488214a14fda09d413;hp=f91dd3fee08c9780b586813e10b1a679e07e2335;hpb=976270916bbfb9c4aa1f2b8ee2897b582a238e25;p=stockfish diff --git a/src/ucioption.cpp b/src/ucioption.cpp index f91dd3fe..7b8799c4 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -33,7 +33,7 @@ OptionsMap Options; // Global object static bool ci_less(char c1, char c2) { return tolower(c1) < tolower(c2); } bool CaseInsensitiveLess::operator() (const string& s1, const string& s2) const { - return std::lexicographical_compare(s1.begin(), s1.end(), s2.begin(), s2.end(), ci_less); + return lexicographical_compare(s1.begin(), s1.end(), s2.begin(), s2.end(), ci_less); }