From a7cd7b60888c33896c1878c50446b5fc816e9493 Mon Sep 17 00:00:00 2001 From: Paolo Carlini Date: Mon, 21 Nov 2011 10:47:37 +0000 Subject: [PATCH] tuple (__conv_types, [...]): Remove. 2011-11-21 Paolo Carlini * include/std/tuple (__conv_types, __one_by_one_convertible, __all_convertible): Remove. (tuple<>::tuple(_UElements&&...), tuple<>::tuple(const tuple<_UElements...>&), tuple<>::tuple(tuple<_UElements...>&&)): Remove wa for c++/48322. From-SVN: r181555 --- libstdc++-v3/ChangeLog | 8 +++ libstdc++-v3/include/std/tuple | 53 +++---------------- .../20_util/uses_allocator/cons_neg.cc | 2 +- 3 files changed, 16 insertions(+), 47 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 336e77f8c0af..5d5fc1d7fc52 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,11 @@ +2011-11-21 Paolo Carlini + + * include/std/tuple (__conv_types, __one_by_one_convertible, + __all_convertible): Remove. + (tuple<>::tuple(_UElements&&...), + tuple<>::tuple(const tuple<_UElements...>&), + tuple<>::tuple(tuple<_UElements...>&&)): Remove wa for c++/48322. + 2011-11-20 Jason Merrill PR c++/48322 diff --git a/libstdc++-v3/include/std/tuple b/libstdc++-v3/include/std/tuple index 474634fc24e8..282d4509d3af 100644 --- a/libstdc++-v3/include/std/tuple +++ b/libstdc++-v3/include/std/tuple @@ -69,35 +69,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION struct __add_r_ref<_Tp&> { typedef _Tp& type; }; - // To work around c++/49225 aka c++/48322. - template - struct __conv_types { }; - - template - struct __one_by_one_convertible - : public false_type { }; - - template - struct __one_by_one_convertible<__conv_types<_Tp>, __conv_types<_Up>> - : public is_convertible<_Tp, _Up>::type { }; - - template - struct __one_by_one_convertible<__conv_types<_T1, _TR...>, - __conv_types<_U1, _UR...>> - : public __and_, - __one_by_one_convertible<__conv_types<_TR...>, - __conv_types<_UR...>>>::type - { }; - - template - struct __all_convertible; - - template - struct __all_convertible<__conv_types<_TTypes...>, - __conv_types<_UTypes...>> - : public __one_by_one_convertible<__conv_types<_TTypes...>, - __conv_types<_UTypes...>>::type { }; - template struct _Head_base; @@ -407,13 +378,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION constexpr tuple(const _Elements&... __elements) : _Inherited(__elements...) { } - template::type, - typename = typename - enable_if<__all_convertible<__conv_types<_UElements...>, - __conv_types<_Elements...> >::value - >::type> + template...>::value>::type> explicit constexpr tuple(_UElements&&... __elements) : _Inherited(std::forward<_UElements>(__elements)...) { } @@ -423,21 +390,15 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION constexpr tuple(tuple&&) = default; template, - __all_convertible<__conv_types, - __conv_types<_Elements...>> - >::value>::type> + enable_if<__and_...>::value>::type> constexpr tuple(const tuple<_UElements...>& __in) : _Inherited(static_cast&>(__in)) { } template, - __all_convertible<__conv_types<_UElements...>, - __conv_types<_Elements...>> - >::value>::type> + enable_if<__and_...>::value>::type> constexpr tuple(tuple<_UElements...>&& __in) : _Inherited(static_cast<_Tuple_impl<0, _UElements...>&&>(__in)) { } diff --git a/libstdc++-v3/testsuite/20_util/uses_allocator/cons_neg.cc b/libstdc++-v3/testsuite/20_util/uses_allocator/cons_neg.cc index ad998356c83e..73a0d0f70297 100644 --- a/libstdc++-v3/testsuite/20_util/uses_allocator/cons_neg.cc +++ b/libstdc++-v3/testsuite/20_util/uses_allocator/cons_neg.cc @@ -44,4 +44,4 @@ void test01() tuple t(allocator_arg, a, 1); } -// { dg-error "no matching function" "" { target *-*-* } 141 } +// { dg-error "no matching function" "" { target *-*-* } 112 }