mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Drop support for building on OS X 10.5. It is too much hassle to
work around the limitations of the no longer maintained Xcode 3.1.4 for Leopard. Running a 10.6-built app on 10.5 works fine through through the use of the 10.5 SDK. std::locale() seems to be the generally safer way to specify the default locale and works on Linux and OS X at least. Thanks to dasmetzelmaennchen for the pointer. Remove some obsolete SCons related svn:ignores. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6893 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -52,9 +52,7 @@ template <typename I>
|
||||
std::string ThousandSeparate(I value, int spaces = 0)
|
||||
{
|
||||
std::ostringstream oss;
|
||||
#ifndef __APPLE__ // XXX
|
||||
oss.imbue(std::locale(""));
|
||||
#endif
|
||||
oss.imbue(std::locale());
|
||||
oss << std::setw(spaces) << value;
|
||||
|
||||
return oss.str();
|
||||
|
Reference in New Issue
Block a user