summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Heap
diff options
context:
space:
mode:
authorBrian Gianforcaro <bgianf@serenityos.org>2021-07-31 00:43:42 -0700
committerGunnar Beutner <gunnar@beutner.name>2021-08-01 08:10:16 +0200
commitb10657a2b6e2109cd399965911f10001f2eb3094 (patch)
treea01c16da312c32a35ff827dc248ed6c196190b9a /Userland/Libraries/LibJS/Heap
parent176e1cbca7005af39c3525a4df97afa3521bfc5a (diff)
downloadserenity-b10657a2b6e2109cd399965911f10001f2eb3094.zip
LibJS: Remove unused includes out of Cell.h, move to the users
Almost everything in LibJS includes Cell.h, don't force all code to include AK/TypeCasts.h + AK/String.h. Instead include them where they are actually used and required.
Diffstat (limited to 'Userland/Libraries/LibJS/Heap')
-rw-r--r--Userland/Libraries/LibJS/Heap/Cell.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibJS/Heap/Cell.h b/Userland/Libraries/LibJS/Heap/Cell.h
index 764104d84c..f2229c9e6e 100644
--- a/Userland/Libraries/LibJS/Heap/Cell.h
+++ b/Userland/Libraries/LibJS/Heap/Cell.h
@@ -9,8 +9,6 @@
#include <AK/Format.h>
#include <AK/Forward.h>
#include <AK/Noncopyable.h>
-#include <AK/String.h>
-#include <AK/TypeCasts.h>
#include <LibJS/Forward.h>
namespace JS {