Update list to remove bogus strengthened comment (#5024)

This commit is contained in:
Saipavan Lingamallu 2024-10-22 03:28:53 +05:30 коммит произвёл GitHub
Родитель 3532569b95
Коммит 7fe40573c5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -920,8 +920,7 @@ public:
_Swap_val(_Right);
}
list& operator=(list&& _Right)
noexcept(_Choose_pocma_v<_Alnode> == _Pocma_values::_Equal_allocators) /* strengthened */ {
list& operator=(list&& _Right) noexcept(_Alnode_traits::is_always_equal::value) {
if (this == _STD addressof(_Right)) {
return *this;
}

Просмотреть файл

@ -940,8 +940,8 @@ public:
_Swap_val_excluding_comp(_Right);
}
_Tree& operator=(_Tree&& _Right) noexcept(
_Choose_pocma_v<_Alnode> == _Pocma_values::_Equal_allocators && is_nothrow_move_assignable_v<key_compare>) {
_Tree& operator=(_Tree&& _Right)
noexcept(_Alnode_traits::is_always_equal::value && is_nothrow_move_assignable_v<key_compare>) {
if (this == _STD addressof(_Right)) {
return *this;
}