Skip to content

Commit 84239c3

Browse files
committed
[hive.overview] Replace complex noexcept expression with 'see below'
1 parent aeb6499 commit 84239c3

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
@@ -7969,9 +7969,7 @@
79697969
hive(initializer_list<T> il, hive_limits block_limits, const Allocator& = Allocator());
79707970
~hive();
79717971
hive& operator=(const hive& x);
7972-
hive& operator=(hive&& x)
7973-
noexcept(allocator_traits<Allocator>::propagate_on_container_move_assignment::value ||
7974-
allocator_traits<Allocator>::is_always_equal::value);
7972+
hive& operator=(hive&& x) noexcept(@\seebelow@);
79757973
hive& operator=(initializer_list<T>);
79767974
template<class InputIterator>
79777975
void assign(InputIterator first, InputIterator last);
@@ -8025,9 +8023,7 @@
80258023

80268024
iterator erase(const_iterator position);
80278025
iterator erase(const_iterator first, const_iterator last);
8028-
void swap(hive&)
8029-
noexcept(allocator_traits<Allocator>::propagate_on_container_swap::value ||
8030-
allocator_traits<Allocator>::is_always_equal::value);
8026+
void swap(hive&) noexcept(@\seebelow@);
80318027
void clear() noexcept;
80328028

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

0 commit comments

Comments
 (0)