fix copy constructor (#1102)

This commit is contained in:
Oleksandr Nemesh 2024-10-02 17:50:29 +03:00 committed by GitHub
parent 8ecb1c549a
commit 67f59e77fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -450,7 +450,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
__node_alloc_traits::_S_propagate_on_move_assign()
|| __node_alloc_traits::_S_always_equal();
_M_move_assign(std::move(__ht),
integral_constant<bool, __move_storage>());
std::integral_constant<bool, __move_storage>());
return *this;
}