1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
14 // noexcept(!allocator_type::propagate_on_container_swap::value ||
15 // __is_nothrow_swappable<allocator_type>::value);
17 // In C++17, the standard says that swap shall have:
18 // noexcept(allocator_traits<Allocator>::is_always_equal::value &&
19 // noexcept(swap(declval<Compare&>(), declval<Compare&>())));
21 // This tests a conforming extension
27 #include "test_macros.h"
29 #include "test_allocator.h"
37 some_comp(const some_comp
&) {}
38 bool operator()(const T
&, const T
&) const { return false; }
47 some_comp2(const some_comp2
&) {}
48 bool operator()(const T
&, const T
&) const { return false; }
51 #if TEST_STD_VER >= 14
53 void swap(some_comp2
<T
>&, some_comp2
<T
>&) noexcept
{}
62 some_alloc(const some_alloc
&);
63 void deallocate(void*, unsigned) {}
65 typedef std::true_type propagate_on_container_swap
;
74 some_alloc2(const some_alloc2
&);
75 void deallocate(void*, unsigned) {}
77 typedef std::false_type propagate_on_container_swap
;
78 typedef std::true_type is_always_equal
;
87 some_alloc3(const some_alloc3
&);
88 void deallocate(void*, unsigned) {}
90 typedef std::false_type propagate_on_container_swap
;
91 typedef std::false_type is_always_equal
;
97 typedef std::set
<MoveOnly
> C
;
98 static_assert(noexcept(swap(std::declval
<C
&>(), std::declval
<C
&>())), "");
100 #if defined(_LIBCPP_VERSION)
102 typedef std::set
<MoveOnly
, std::less
<MoveOnly
>, test_allocator
<MoveOnly
>> C
;
103 static_assert(noexcept(swap(std::declval
<C
&>(), std::declval
<C
&>())), "");
106 typedef std::set
<MoveOnly
, std::less
<MoveOnly
>, other_allocator
<MoveOnly
>> C
;
107 static_assert(noexcept(swap(std::declval
<C
&>(), std::declval
<C
&>())), "");
109 #endif // _LIBCPP_VERSION
111 typedef std::set
<MoveOnly
, some_comp
<MoveOnly
>> C
;
112 static_assert(!noexcept(swap(std::declval
<C
&>(), std::declval
<C
&>())), "");
115 #if TEST_STD_VER >= 14
116 { // POCS allocator, throwable swap for comp
117 typedef std::set
<MoveOnly
, some_comp
<MoveOnly
>, some_alloc
<MoveOnly
>> C
;
118 static_assert(!noexcept(swap(std::declval
<C
&>(), std::declval
<C
&>())), "");
120 { // always equal allocator, throwable swap for comp
121 typedef std::set
<MoveOnly
, some_comp
<MoveOnly
>, some_alloc2
<MoveOnly
>> C
;
122 static_assert(!noexcept(swap(std::declval
<C
&>(), std::declval
<C
&>())), "");
124 { // POCS allocator, nothrow swap for comp
125 typedef std::set
<MoveOnly
, some_comp2
<MoveOnly
>, some_alloc
<MoveOnly
>> C
;
126 static_assert( noexcept(swap(std::declval
<C
&>(), std::declval
<C
&>())), "");
128 { // always equal allocator, nothrow swap for comp
129 typedef std::set
<MoveOnly
, some_comp2
<MoveOnly
>, some_alloc2
<MoveOnly
>> C
;
130 static_assert( noexcept(swap(std::declval
<C
&>(), std::declval
<C
&>())), "");
132 #if defined(_LIBCPP_VERSION)
133 { // NOT always equal allocator, nothrow swap for comp
134 typedef std::set
<MoveOnly
, some_comp2
<MoveOnly
>, some_alloc3
<MoveOnly
>> C
;
135 static_assert( noexcept(swap(std::declval
<C
&>(), std::declval
<C
&>())), "");
137 #endif // _LIBCPP_VERSION