aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/22_locale/moneypunct_members_char.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++-v3/testsuite/22_locale/moneypunct_members_char.cc')
-rw-r--r--libstdc++-v3/testsuite/22_locale/moneypunct_members_char.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/testsuite/22_locale/moneypunct_members_char.cc b/libstdc++-v3/testsuite/22_locale/moneypunct_members_char.cc
index 5beb5ee9fb0..3cb6c88a880 100644
--- a/libstdc++-v3/testsuite/22_locale/moneypunct_members_char.cc
+++ b/libstdc++-v3/testsuite/22_locale/moneypunct_members_char.cc
@@ -128,12 +128,12 @@ void test03()
{
bool test = true;
- const char* tentLANG = setlocale(LC_ALL, "ja_JP.eucjp");
+ const char* tentLANG = std::setlocale(LC_ALL, "ja_JP.eucjp");
if (tentLANG != NULL)
{
std::string preLANG = tentLANG;
test01();
- std::string postLANG = setlocale(LC_ALL, NULL);
+ std::string postLANG = std::setlocale(LC_ALL, NULL);
VERIFY( preLANG == postLANG );
}
}