diff --git a/Source/Core/Common/Src/StringUtil.h b/Source/Core/Common/Src/StringUtil.h index e3502eaa67..913a06030e 100644 --- a/Source/Core/Common/Src/StringUtil.h +++ b/Source/Core/Common/Src/StringUtil.h @@ -52,7 +52,9 @@ template std::string ThousandSeparate(I value, int spaces = 0) { std::ostringstream oss; +#ifndef __APPLE__ // XXX oss.imbue(std::locale("")); +#endif oss << std::setw(spaces) << value; return oss.str();