From 5bf37d758cbb878325f77d5ed0799fd7fd17d4b2 Mon Sep 17 00:00:00 2001 From: Ali Mohammad Pur Date: Tue, 18 May 2021 18:43:34 +0430 Subject: [PATCH] AK: Let HashMap export its key and value types --- AK/HashMap.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AK/HashMap.h b/AK/HashMap.h index dc8f74ac332..ef06025db10 100644 --- a/AK/HashMap.h +++ b/AK/HashMap.h @@ -33,6 +33,9 @@ private: }; public: + using KeyType = K; + using ValueType = V; + HashMap() = default; #ifndef SERENITY_LIBC_BUILD