1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:17:35 +00:00

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.
This commit is contained in:
Brian Gianforcaro 2021-07-31 00:43:42 -07:00 committed by Gunnar Beutner
parent 176e1cbca7
commit b10657a2b6
29 changed files with 28 additions and 3 deletions

View file

@ -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 {