# HG changeset patch # User Sebastien Jodogne # Date 1503431484 -7200 # Node ID 68380777f9a6bfbe2a42ab3b86d792c10b123873 # Parent 39600af9fec30c11913ee985e40b016f261822cf fix diff -r 39600af9fec3 -r 68380777f9a6 Core/Toolbox.cpp --- a/Core/Toolbox.cpp Tue Aug 22 23:33:42 2017 +0200 +++ b/Core/Toolbox.cpp Tue Aug 22 21:51:24 2017 +0200 @@ -1326,7 +1326,6 @@ { globalLocale_.reset(); } -#endif std::string Toolbox::ToUpperCaseWithAccents(const std::string& source) @@ -1368,4 +1367,5 @@ w = boost::algorithm::to_upper_copy(w, *globalLocale_); return boost::locale::conv::utf_to_utf(w); } +#endif } diff -r 39600af9fec3 -r 68380777f9a6 Core/Toolbox.h --- a/Core/Toolbox.h Tue Aug 22 23:33:42 2017 +0200 +++ b/Core/Toolbox.h Tue Aug 22 21:51:24 2017 +0200 @@ -209,8 +209,8 @@ void InitializeGlobalLocale(const char* locale); void FinalizeGlobalLocale(); -#endif std::string ToUpperCaseWithAccents(const std::string& source); +#endif } }