AK: Let HashMap export its key and value types

This commit is contained in:
Ali Mohammad Pur 2021-05-18 18:43:34 +04:30 committed by Linus Groh
parent 547c7ba57f
commit 5bf37d758c

View file

@ -33,6 +33,9 @@ private:
};
public:
using KeyType = K;
using ValueType = V;
HashMap() = default;
#ifndef SERENITY_LIBC_BUILD