From: redi Date: Mon, 29 Apr 2019 13:25:38 +0000 (+0000) Subject: Use _GLIBCXX_NOEXCEPT_IF for std::swap X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=744a3010791fbd97718a3f51e9c9b2512f6d3f3e;p=thirdparty%2Fgcc.git Use _GLIBCXX_NOEXCEPT_IF for std::swap * include/bits/move.h (swap(T&, T&), swap(T (&)[N], T (&)[N])): Use _GLIBCXX_NOEXCEPT_IF to simplify declarations. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@270650 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 2168a795f48c..b93f6707ad53 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,8 @@ 2019-04-29 Jonathan Wakely + * include/bits/move.h (swap(T&, T&), swap(T (&)[N], T (&)[N])): Use + _GLIBCXX_NOEXCEPT_IF to simplify declarations. + PR libstdc++/71312 * src/c++11/shared_ptr.cc (get_mutex): Align pool mutexes to 64 bytes. diff --git a/libstdc++-v3/include/bits/move.h b/libstdc++-v3/include/bits/move.h index 9ebf4453cdd3..996078cfbce4 100644 --- a/libstdc++-v3/include/bits/move.h +++ b/libstdc++-v3/include/bits/move.h @@ -179,13 +179,12 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION typename enable_if<__and_<__not_<__is_tuple_like<_Tp>>, is_move_constructible<_Tp>, is_move_assignable<_Tp>>::value>::type - swap(_Tp& __a, _Tp& __b) - noexcept(__and_, - is_nothrow_move_assignable<_Tp>>::value) #else void - swap(_Tp& __a, _Tp& __b) #endif + swap(_Tp& __a, _Tp& __b) + _GLIBCXX_NOEXCEPT_IF((__and_, + is_nothrow_move_assignable<_Tp>>::value)) { // concept requirements __glibcxx_function_requires(_SGIAssignableConcept<_Tp>) @@ -202,12 +201,11 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION inline #if __cplusplus >= 201103L typename enable_if<__is_swappable<_Tp>::value>::type - swap(_Tp (&__a)[_Nm], _Tp (&__b)[_Nm]) - noexcept(__is_nothrow_swappable<_Tp>::value) #else void - swap(_Tp (&__a)[_Nm], _Tp (&__b)[_Nm]) #endif + swap(_Tp (&__a)[_Nm], _Tp (&__b)[_Nm]) + _GLIBCXX_NOEXCEPT_IF(__is_nothrow_swappable<_Tp>::value) { for (size_t __n = 0; __n < _Nm; ++__n) swap(__a[__n], __b[__n]);