summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--asl/containers/hash_map.hpp10
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;