summaryrefslogtreecommitdiff
path: root/Source/Core/Common
diff options
context:
space:
mode:
authorLéo Lam <leolino.lam@gmail.com>2018-04-09 20:03:48 +0200
committerGitHub <noreply@github.com>2018-04-09 20:03:48 +0200
commit0e1ca1e17cdb9f42ab2b59512dfd79e3373fd937 (patch)
treee90390ad59ae3a89ddd5d73d310715f90a57b4f6 /Source/Core/Common
parent7aaaf442290717c39a08815c6bb24851e55430f2 (diff)
parenta66d56aece307431337fba99acdbe27602430eb6 (diff)
Merge pull request #5805 from JosJuice/date-time-locale
Set C++ locale
Diffstat (limited to 'Source/Core/Common')
-rw-r--r--Source/Core/Common/StringUtil.h4
1 files changed, 0 insertions, 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