AK: Let HashMap export its key and value types
This commit is contained in:
parent
547c7ba57f
commit
5bf37d758c
Notes:
sideshowbarker
2024-07-18 17:49:58 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/5bf37d758cb Pull-request: https://github.com/SerenityOS/serenity/pull/7255 Reviewed-by: https://github.com/linusg
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…
Add table
Reference in a new issue