Skip to content

Commit ff6f4a0

Browse files
jensmaurertkoeppe
authored andcommitted
[hive.overview] Replace complex noexcept expression with 'see below'
1 parent 018c69e commit ff6f4a0

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

source/containers.tex

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8053,9 +8053,7 @@
80538053
~hive();
80548054

80558055
hive& operator=(const hive& x);
8056-
hive& operator=(hive&& x)
8057-
noexcept(allocator_traits<Allocator>::propagate_on_container_move_assignment::value ||
8058-
allocator_traits<Allocator>::is_always_equal::value);
8056+
hive& operator=(hive&& x) noexcept(@\seebelow@);
80598057
hive& operator=(initializer_list<T>);
80608058
template<class InputIterator>
80618059
void assign(InputIterator first, InputIterator last);
@@ -8109,9 +8107,7 @@
81098107

81108108
iterator erase(const_iterator position);
81118109
iterator erase(const_iterator first, const_iterator last);
8112-
void swap(hive&)
8113-
noexcept(allocator_traits<Allocator>::propagate_on_container_swap::value ||
8114-
allocator_traits<Allocator>::is_always_equal::value);
8110+
void swap(hive&) noexcept(@\seebelow@);
81158111
void clear() noexcept;
81168112

81178113
// \ref{hive.operations}, hive operations

0 commit comments

Comments
 (0)