Remove quotes from locale name identifier. Credit Edward Meewis.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@146655 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant 2011-12-15 15:01:38 +00:00
parent f8880d0b85
commit 8e50a9cf73

View File

@ -45,7 +45,7 @@ public:
int main()
{
std::ios ios(0);
std::string loc_name("LOCALE_ru_RU_UTF_8");
std::string loc_name(LOCALE_ru_RU_UTF_8);
ios.imbue(std::locale(ios.getloc(),
new std::moneypunct_byname<char, false>(loc_name)));
ios.imbue(std::locale(ios.getloc(),