Skip to content

Commit 28a8d49

Browse files
jensmaurertkoeppe
authored andcommitted
[hive.overview] Replace complex noexcept expression with 'see below'
1 parent 460ed2e commit 28a8d49

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
@@ -8052,9 +8052,7 @@
80528052
hive(initializer_list<T> il, hive_limits block_limits, const Allocator& = Allocator());
80538053
~hive();
80548054
hive& operator=(const hive& x);
8055-
hive& operator=(hive&& x)
8056-
noexcept(allocator_traits<Allocator>::propagate_on_container_move_assignment::value ||
8057-
allocator_traits<Allocator>::is_always_equal::value);
8055+
hive& operator=(hive&& x) noexcept(@\seebelow@);
80588056
hive& operator=(initializer_list<T>);
80598057
template<class InputIterator>
80608058
void assign(InputIterator first, InputIterator last);
@@ -8108,9 +8106,7 @@
81088106

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

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

0 commit comments

Comments
 (0)