From 7933dc2a80e000c33dfe3981a15e4f948650b2c7 Mon Sep 17 00:00:00 2001 From: Paolo Carlini Date: Mon, 16 May 2011 18:24:01 +0000 Subject: [PATCH] utility: Simplify the last commit, the whole std::get code is C++0x only. 2011-05-16 Paolo Carlini * include/std/utility: Simplify the last commit, the whole std::get code is C++0x only. From-SVN: r173799 --- libstdc++-v3/ChangeLog | 5 +++++ libstdc++-v3/include/std/utility | 30 ++++++++++++------------------ 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index d4554d17b16..9b99d8b43f5 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2011-05-16 Paolo Carlini + + * include/std/utility: Simplify the last commit, the whole + std::get code is C++0x only. + 2011-05-16 Paolo Carlini * include/std/utility (get(std::pair<>&&)): Add. diff --git a/libstdc++-v3/include/std/utility b/libstdc++-v3/include/std/utility index 6c1dd369ba4..5c6bd03c0ea 100644 --- a/libstdc++-v3/include/std/utility +++ b/libstdc++-v3/include/std/utility @@ -87,7 +87,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // Various functions which give std::pair a tuple-like interface. template - struct tuple_size > + struct tuple_size> { static const std::size_t value = 2; }; template @@ -95,11 +95,11 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION tuple_size >::value; template - struct tuple_element<0, std::pair<_Tp1, _Tp2> > + struct tuple_element<0, std::pair<_Tp1, _Tp2>> { typedef _Tp1 type; }; template - struct tuple_element<1, std::pair<_Tp1, _Tp2> > + struct tuple_element<1, std::pair<_Tp1, _Tp2>> { typedef _Tp2 type; }; template @@ -110,19 +110,17 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION { template static _Tp1& - __get(std::pair<_Tp1, _Tp2>& __pair) _GLIBCXX_NOEXCEPT + __get(std::pair<_Tp1, _Tp2>& __pair) noexcept { return __pair.first; } -#ifdef __GXX_EXPERIMENTAL_CXX0X__ template static _Tp1&& __move_get(std::pair<_Tp1, _Tp2>&& __pair) noexcept { return std::forward<_Tp1>(__pair.first); } -#endif template static const _Tp1& - __const_get(const std::pair<_Tp1, _Tp2>& __pair) _GLIBCXX_NOEXCEPT + __const_get(const std::pair<_Tp1, _Tp2>& __pair) noexcept { return __pair.first; } }; @@ -131,37 +129,33 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION { template static _Tp2& - __get(std::pair<_Tp1, _Tp2>& __pair) _GLIBCXX_NOEXCEPT + __get(std::pair<_Tp1, _Tp2>& __pair) noexcept { return __pair.second; } -#ifdef __GXX_EXPERIMENTAL_CXX0X__ template static _Tp2&& __move_get(std::pair<_Tp1, _Tp2>&& __pair) noexcept { return std::forward<_Tp2>(__pair.second); } -#endif template static const _Tp2& - __const_get(const std::pair<_Tp1, _Tp2>& __pair) _GLIBCXX_NOEXCEPT + __const_get(const std::pair<_Tp1, _Tp2>& __pair) noexcept { return __pair.second; } }; template - inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type& - get(std::pair<_Tp1, _Tp2>& __in) _GLIBCXX_NOEXCEPT + inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2>>::type& + get(std::pair<_Tp1, _Tp2>& __in) noexcept { return __pair_get<_Int>::__get(__in); } -#ifdef __GXX_EXPERIMENTAL_CXX0X__ template - inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type&& + inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2>>::type&& get(std::pair<_Tp1, _Tp2>&& __in) noexcept { return __pair_get<_Int>::__move_get(std::move(__in)); } -#endif template - inline const typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type& - get(const std::pair<_Tp1, _Tp2>& __in) _GLIBCXX_NOEXCEPT + inline const typename tuple_element<_Int, std::pair<_Tp1, _Tp2>>::type& + get(const std::pair<_Tp1, _Tp2>& __in) noexcept { return __pair_get<_Int>::__const_get(__in); } _GLIBCXX_END_NAMESPACE_VERSION -- 2.30.2