diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2021-07-31 00:43:42 -0700 |
---|---|---|
committer | Gunnar Beutner <gunnar@beutner.name> | 2021-08-01 08:10:16 +0200 |
commit | b10657a2b6e2109cd399965911f10001f2eb3094 (patch) | |
tree | a01c16da312c32a35ff827dc248ed6c196190b9a /Userland/Libraries/LibJS/Runtime/Temporal/DurationConstructor.cpp | |
parent | 176e1cbca7005af39c3525a4df97afa3521bfc5a (diff) | |
download | serenity-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/Runtime/Temporal/DurationConstructor.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Temporal/DurationConstructor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Temporal/DurationConstructor.cpp b/Userland/Libraries/LibJS/Runtime/Temporal/DurationConstructor.cpp index 5f565987b7..c2366b3fb7 100644 --- a/Userland/Libraries/LibJS/Runtime/Temporal/DurationConstructor.cpp +++ b/Userland/Libraries/LibJS/Runtime/Temporal/DurationConstructor.cpp @@ -4,6 +4,7 @@ * SPDX-License-Identifier: BSD-2-Clause */ +#include <AK/TypeCasts.h> #include <LibJS/Runtime/GlobalObject.h> #include <LibJS/Runtime/Temporal/Duration.h> #include <LibJS/Runtime/Temporal/DurationConstructor.h> |