mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
AK: Let HashMap export its key and value types
This commit is contained in:
parent
547c7ba57f
commit
5bf37d758c
1 changed files with 3 additions and 0 deletions
|
@ -33,6 +33,9 @@ private:
|
|||
};
|
||||
|
||||
public:
|
||||
using KeyType = K;
|
||||
using ValueType = V;
|
||||
|
||||
HashMap() = default;
|
||||
|
||||
#ifndef SERENITY_LIBC_BUILD
|
||||
|
|
Loading…
Reference in a new issue