diff options
Diffstat (limited to 'libstdc++-v3/src/locale.cc')
-rw-r--r-- | libstdc++-v3/src/locale.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libstdc++-v3/src/locale.cc b/libstdc++-v3/src/locale.cc index d69e7e62455..8e76f51b651 100644 --- a/libstdc++-v3/src/locale.cc +++ b/libstdc++-v3/src/locale.cc @@ -114,9 +114,11 @@ namespace std const locale::id* const locale::_Impl::_S_id_time[] = { + &__timepunct<char>::id, &time_get<char>::id, &time_put<char>::id, #ifdef _GLIBCPP_USE_WCHAR_T + &__timepunct<wchar_t>::id, &time_get<wchar_t>::id, &time_put<wchar_t>::id, #endif |