diff options
-rw-r--r-- | AK/HashMap.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/AK/HashMap.h b/AK/HashMap.h index dc8f74ac33..ef06025db1 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 |