[libcxx-commits] [libcxx] [libc++] Implement N4258(Cleaning-up noexcept in the Library) (PR #120312)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Jan 29 07:44:43 PST 2025
================
@@ -674,9 +674,10 @@ public:
_LIBCPP_HIDE_FROM_ABI deque(deque&& __c) noexcept(is_nothrow_move_constructible<allocator_type>::value);
_LIBCPP_HIDE_FROM_ABI deque(deque&& __c, const __type_identity_t<allocator_type>& __a);
- _LIBCPP_HIDE_FROM_ABI deque&
- operator=(deque&& __c) noexcept(__alloc_traits::propagate_on_container_move_assignment::value &&
- is_nothrow_move_assignable<allocator_type>::value);
+ _LIBCPP_HIDE_FROM_ABI deque& operator=(deque&& __c) noexcept(
----------------
ldionne wrote:
I think you need to update the synopsis here and in the other headers you modified.
https://github.com/llvm/llvm-project/pull/120312
More information about the libcxx-commits
mailing list