From: Ed Smith-Rowland <3dw4rd@verizon.net> Date: Tue, 11 Jun 2013 11:00:38 +0000 (+0000) Subject: Fix library literals error involving namespace __detail. X-Git-Tag: releases/gcc-4.9.0~5454 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0372af98bd3e02f578f1ad0c097e3619e28c64e4;p=thirdparty%2Fgcc.git Fix library literals error involving namespace __detail. 2013-06-11 Ed Smith-Rowland <3dw4rd@verizon.net> Fix library literals error involving namespace __detail. * include/std/chrono: Rename __detail to __select_type. Reformat. * include/bits/basic_string.h: Reformat. * testsuite/20_util/duration/literals/ns_detail.cc: New. From-SVN: r199948 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 60bc7b5a5ebd..bef2e0d1dd1c 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2013-06-11 Ed Smith-Rowland <3dw4rd@verizon.net> + + Fix library literals error involving namespace __detail. + * include/std/chrono: Rename __detail to __select_type. Reformat. + * include/bits/basic_string.h: Reformat. + * testsuite/20_util/duration/literals/ns_detail.cc: New. + 2013-06-11 Paolo Carlini PR libstdc++/56019 diff --git a/libstdc++-v3/include/bits/basic_string.h b/libstdc++-v3/include/bits/basic_string.h index aec48d7430ae..cbea5664e71c 100644 --- a/libstdc++-v3/include/bits/basic_string.h +++ b/libstdc++-v3/include/bits/basic_string.h @@ -3105,8 +3105,10 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION #if __cplusplus > 201103L - inline namespace literals { - inline namespace string_literals { + inline namespace literals + { + inline namespace string_literals + { inline basic_string operator"" s(const char* __str, size_t __len) diff --git a/libstdc++-v3/include/std/chrono b/libstdc++-v3/include/std/chrono index b32fb4460dee..d5ef984279d7 100644 --- a/libstdc++-v3/include/std/chrono +++ b/libstdc++-v3/include/std/chrono @@ -782,10 +782,13 @@ _GLIBCXX_END_NAMESPACE_VERSION #if __cplusplus > 201103L - inline namespace literals { - inline namespace chrono_literals { + inline namespace literals + { + inline namespace chrono_literals + { - namespace __detail { + namespace __select_type + { using namespace __parse_int; @@ -804,7 +807,7 @@ _GLIBCXX_END_NAMESPACE_VERSION constexpr typename _Select_type<_Val, _Dur>::type _Select_type<_Val, _Dur>::value; - } // __detail + } // __select_type constexpr chrono::duration> operator"" h(long double __hours) @@ -812,11 +815,11 @@ _GLIBCXX_END_NAMESPACE_VERSION template constexpr typename - __detail::_Select_type<__select_int::_Select_int<_Digits...>::value, + __select_type::_Select_type<__select_int::_Select_int<_Digits...>::value, chrono::hours>::type operator"" h() { - return __detail::_Select_type< + return __select_type::_Select_type< __select_int::_Select_int<_Digits...>::value, chrono::hours>::value; } @@ -827,11 +830,11 @@ _GLIBCXX_END_NAMESPACE_VERSION template constexpr typename - __detail::_Select_type<__select_int::_Select_int<_Digits...>::value, + __select_type::_Select_type<__select_int::_Select_int<_Digits...>::value, chrono::minutes>::type operator"" min() { - return __detail::_Select_type< + return __select_type::_Select_type< __select_int::_Select_int<_Digits...>::value, chrono::minutes>::value; } @@ -842,11 +845,11 @@ _GLIBCXX_END_NAMESPACE_VERSION template constexpr typename - __detail::_Select_type<__select_int::_Select_int<_Digits...>::value, + __select_type::_Select_type<__select_int::_Select_int<_Digits...>::value, chrono::seconds>::type operator"" s() { - return __detail::_Select_type< + return __select_type::_Select_type< __select_int::_Select_int<_Digits...>::value, chrono::seconds>::value; } @@ -857,11 +860,11 @@ _GLIBCXX_END_NAMESPACE_VERSION template constexpr typename - __detail::_Select_type<__select_int::_Select_int<_Digits...>::value, + __select_type::_Select_type<__select_int::_Select_int<_Digits...>::value, chrono::milliseconds>::type operator"" ms() { - return __detail::_Select_type< + return __select_type::_Select_type< __select_int::_Select_int<_Digits...>::value, chrono::milliseconds>::value; } @@ -872,11 +875,11 @@ _GLIBCXX_END_NAMESPACE_VERSION template constexpr typename - __detail::_Select_type<__select_int::_Select_int<_Digits...>::value, + __select_type::_Select_type<__select_int::_Select_int<_Digits...>::value, chrono::microseconds>::type operator"" us() { - return __detail::_Select_type< + return __select_type::_Select_type< __select_int::_Select_int<_Digits...>::value, chrono::microseconds>::value; } @@ -887,11 +890,11 @@ _GLIBCXX_END_NAMESPACE_VERSION template constexpr typename - __detail::_Select_type<__select_int::_Select_int<_Digits...>::value, + __select_type::_Select_type<__select_int::_Select_int<_Digits...>::value, chrono::nanoseconds>::type operator"" ns() { - return __detail::_Select_type< + return __select_type::_Select_type< __select_int::_Select_int<_Digits...>::value, chrono::nanoseconds>::value; } diff --git a/libstdc++-v3/testsuite/20_util/duration/literals/ns_detail.cc b/libstdc++-v3/testsuite/20_util/duration/literals/ns_detail.cc new file mode 100644 index 000000000000..a5e21e9a3dd7 --- /dev/null +++ b/libstdc++-v3/testsuite/20_util/duration/literals/ns_detail.cc @@ -0,0 +1,7 @@ +// { dg-options "-std=gnu++1y" } +// { dg-do compile } + +// Test error: reference to '__detail' is ambiguous + +#include +#include