From a7475b6af21717f59c1b3d0dcb0fd6c1198a9fdc Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Fri, 14 Mar 2025 18:59:32 +0100 Subject: Remove redundant methods in hash_map --- asl/containers/hash_map.hpp | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'asl') 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 && copyable = default; - - hash_map& operator=(const hash_map&) requires copyable && copyable = default; - - hash_map(hash_map&&) = default; - - hash_map& operator=(hash_map&&) = default; - - ~hash_map() = default; - using Base::destroy; using Base::clear; -- cgit