1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:47:45 +00:00

AK: Add HashMap, HashTable and Traits to Forward.h

This commit is contained in:
Andreas Kling 2020-02-16 02:01:18 +01:00
parent e28809a996
commit e61cdf5c39
4 changed files with 24 additions and 4 deletions

View file

@ -26,6 +26,7 @@
#pragma once
#include <AK/Forward.h>
#include <AK/HashFunctions.h>
namespace AK {
@ -82,3 +83,6 @@ struct Traits<T*> : public GenericTraits<T*> {
};
}
using AK::GenericTraits;
using AK::Traits;