From 4630cb5237aea7749ac9938c738146c798e305cb Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Fri, 14 Mar 2025 18:53:37 +0100 Subject: Add missing is_empty methods --- asl/containers/hash_map.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'asl/containers/hash_map.hpp') diff --git a/asl/containers/hash_map.hpp b/asl/containers/hash_map.hpp index cf2f0b2..8c201a9 100644 --- a/asl/containers/hash_map.hpp +++ b/asl/containers/hash_map.hpp @@ -96,6 +96,8 @@ public: using Base::size; + using Base::is_empty; + using Base::remove; using Base::contains; -- cgit