Fix a typo in the noexcept calculation for __compressed_pair::swap. Thanks to EricWF for the bug report and the fix.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@212046 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c8c7abae66
commit
394451db81
@ -2019,7 +2019,7 @@ public:
|
||||
|
||||
_LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
|
||||
_NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
|
||||
__is_nothrow_swappable<_T1>::value)
|
||||
__is_nothrow_swappable<_T2>::value)
|
||||
{
|
||||
using _VSTD::swap;
|
||||
swap(__first_, __x.__first_);
|
||||
@ -2110,7 +2110,7 @@ public:
|
||||
|
||||
_LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
|
||||
_NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
|
||||
__is_nothrow_swappable<_T1>::value)
|
||||
__is_nothrow_swappable<_T2>::value)
|
||||
{
|
||||
using _VSTD::swap;
|
||||
swap(__second_, __x.__second_);
|
||||
@ -2203,7 +2203,7 @@ public:
|
||||
|
||||
_LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
|
||||
_NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
|
||||
__is_nothrow_swappable<_T1>::value)
|
||||
__is_nothrow_swappable<_T2>::value)
|
||||
{
|
||||
using _VSTD::swap;
|
||||
swap(__first_, __x.__first_);
|
||||
@ -2292,7 +2292,7 @@ public:
|
||||
|
||||
_LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp&)
|
||||
_NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
|
||||
__is_nothrow_swappable<_T1>::value)
|
||||
__is_nothrow_swappable<_T2>::value)
|
||||
{
|
||||
}
|
||||
};
|
||||
@ -2375,7 +2375,7 @@ public:
|
||||
|
||||
_LIBCPP_INLINE_VISIBILITY void swap(__compressed_pair& __x)
|
||||
_NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
|
||||
__is_nothrow_swappable<_T1>::value)
|
||||
__is_nothrow_swappable<_T2>::value)
|
||||
{base::swap(__x);}
|
||||
};
|
||||
|
||||
@ -2384,7 +2384,7 @@ inline _LIBCPP_INLINE_VISIBILITY
|
||||
void
|
||||
swap(__compressed_pair<_T1, _T2>& __x, __compressed_pair<_T1, _T2>& __y)
|
||||
_NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
|
||||
__is_nothrow_swappable<_T1>::value)
|
||||
__is_nothrow_swappable<_T2>::value)
|
||||
{__x.swap(__y);}
|
||||
|
||||
// __same_or_less_cv_qualified
|
||||
|
Loading…
Reference in New Issue
Block a user