Commit 4b8b1f59 by Marek Polacek Committed by Marek Polacek

* src/c++98/locale_init.cc: Fix #ifdef condition.

From-SVN: r263016
parent 5d36384c
2018-07-26 Marek Polacek <polacek@redhat.com>
* src/c++98/locale_init.cc: Fix #ifdef condition.
2018-07-26 Jonathan Wakely <jwakely@redhat.com> 2018-07-26 Jonathan Wakely <jwakely@redhat.com>
* testsuite/18_support/aligned_alloc/aligned_alloc.cc: Add * testsuite/18_support/aligned_alloc/aligned_alloc.cc: Add
......
...@@ -534,7 +534,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -534,7 +534,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
_M_init_facet(new (&messages_w) std::messages<wchar_t>(1)); _M_init_facet(new (&messages_w) std::messages<wchar_t>(1));
#endif #endif
#ifdef _GLIBCXX_NUM_UNICODE_FACETS != 0 #if _GLIBCXX_NUM_UNICODE_FACETS != 0
_M_init_facet(new (&codecvt_c16) codecvt<char16_t, char, mbstate_t>(1)); _M_init_facet(new (&codecvt_c16) codecvt<char16_t, char, mbstate_t>(1));
_M_init_facet(new (&codecvt_c32) codecvt<char32_t, char, mbstate_t>(1)); _M_init_facet(new (&codecvt_c32) codecvt<char32_t, char, mbstate_t>(1));
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment