diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-14 18:59:32 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-14 18:59:32 +0100 |
commit | a7475b6af21717f59c1b3d0dcb0fd6c1198a9fdc (patch) | |
tree | 968cdc3590fb7cb6308b3b10eda3566aaf4e9f0f /asl | |
parent | 8b6f57dc6a38c5ff3a696b8a0334b83839c4a73d (diff) |
Remove redundant methods in hash_map
Diffstat (limited to 'asl')
-rw-r--r-- | asl/containers/hash_map.hpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/asl/containers/hash_map.hpp b/asl/containers/hash_map.hpp index 8c201a9..dc140eb 100644 --- a/asl/containers/hash_map.hpp +++ b/asl/containers/hash_map.hpp @@ -80,16 +80,6 @@ public: : 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::clear; |