Remove redundant methods in hash_map

This commit is contained in:
2025-03-14 18:59:32 +01:00
parent 8b6f57dc6a
commit a7475b6af2

View File

@ -80,16 +80,6 @@ public:
: Base{std::move(allocator)} : Base{std::move(allocator)}
{} {}
hash_map(const hash_map&) requires copyable<K> && copyable<V> = default;
hash_map& operator=(const hash_map&) requires copyable<K> && copyable<V> = default;
hash_map(hash_map&&) = default;
hash_map& operator=(hash_map&&) = default;
~hash_map() = default;
using Base::destroy; using Base::destroy;
using Base::clear; using Base::clear;