diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 54c1bed7801..d3f91a6a101 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2003-11-14 Paolo Carlini + + * testsuite/22_locale/locale/cons/12352.cc: Use + __gnu_test::try_named_locale. + 2003-11-14 Paolo Carlini * docs/html/ext/howto.html: Add entries for DR 63, 75 diff --git a/libstdc++-v3/testsuite/22_locale/locale/cons/12352.cc b/libstdc++-v3/testsuite/22_locale/locale/cons/12352.cc index 06e7e0d1427..b58f61bfa97 100644 --- a/libstdc++-v3/testsuite/22_locale/locale/cons/12352.cc +++ b/libstdc++-v3/testsuite/22_locale/locale/cons/12352.cc @@ -22,6 +22,7 @@ #include #include #include +#include int times_to_fail = 0; @@ -100,7 +101,7 @@ void test01(int iters) times_to_fail = i; try { - std::locale loc1(""); + std::locale loc1 = __gnu_test::try_named_locale(""); std::locale loc2(loc1, std::locale::classic(), std::locale::numeric); }