From 0dca432836a0d51c5540acffcaa8ae54444814d1 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 10 Mar 2018 13:49:47 +0100 Subject: [PATCH] Remove old code for using default locale This isn't needed anymore now that the global C++ locale isn't set to the classic locale. --- Source/Core/Common/StringUtil.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/Core/Common/StringUtil.h b/Source/Core/Common/StringUtil.h index ec2e5c6337..ef84fb6dcd 100644 --- a/Source/Core/Common/StringUtil.h +++ b/Source/Core/Common/StringUtil.h @@ -51,10 +51,6 @@ std::string ThousandSeparate(I value, int spaces = 0) std::ostringstream stream; #endif -// std::locale("") seems to be broken on many platforms -#if defined _WIN32 || (defined __linux__ && !defined __clang__) - stream.imbue(std::locale("")); -#endif stream << std::setw(spaces) << value; #ifdef _WIN32