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:
parent
f8880d0b85
commit
8e50a9cf73
@ -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(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user