Skip to content

Commit 6e45cf2

Browse files
committed
[hive.overview] Replace complex noexcept expression with 'see below'
1 parent 8dfd1bc commit 6e45cf2

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
@@ -8008,9 +8008,7 @@
80088008
hive(initializer_list<T> il, hive_limits block_limits, const Allocator& = Allocator());
80098009
~hive();
80108010
hive& operator=(const hive& x);
8011-
hive& operator=(hive&& x)
8012-
noexcept(allocator_traits<Allocator>::propagate_on_container_move_assignment::value ||
8013-
allocator_traits<Allocator>::is_always_equal::value);
8011+
hive& operator=(hive&& x) noexcept(@\seebelow@);
80148012
hive& operator=(initializer_list<T>);
80158013
template<class InputIterator>
80168014
void assign(InputIterator first, InputIterator last);
@@ -8064,9 +8062,7 @@
80648062

80658063
iterator erase(const_iterator position);
80668064
iterator erase(const_iterator first, const_iterator last);
8067-
void swap(hive&)
8068-
noexcept(allocator_traits<Allocator>::propagate_on_container_swap::value ||
8069-
allocator_traits<Allocator>::is_always_equal::value);
8065+
void swap(hive&) noexcept(@\seebelow@);
80708066
void clear() noexcept;
80718067

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

0 commit comments

Comments
 (0)