diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-17 19:50:20 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-17 19:53:00 +0200 |
commit | 6714cf36318fb81d1a6e019af0ff919fd33fccba (patch) | |
tree | b33b79b089be6e79adefa80ecfa2ffc622f310fe /Userland/Libraries/LibJS/Heap/Handle.cpp | |
parent | ee6600ea2407ab557ea020b494ad18f69316a663 (diff) | |
download | serenity-6714cf36318fb81d1a6e019af0ff919fd33fccba.zip |
LibJS: Move Cell.{cpp,h} from Runtime/ to Heap/
Diffstat (limited to 'Userland/Libraries/LibJS/Heap/Handle.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/Heap/Handle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Heap/Handle.cpp b/Userland/Libraries/LibJS/Heap/Handle.cpp index 7acb2a7e75..66d97e193b 100644 --- a/Userland/Libraries/LibJS/Heap/Handle.cpp +++ b/Userland/Libraries/LibJS/Heap/Handle.cpp @@ -4,9 +4,9 @@ * SPDX-License-Identifier: BSD-2-Clause */ +#include <LibJS/Heap/Cell.h> #include <LibJS/Heap/Handle.h> #include <LibJS/Heap/Heap.h> -#include <LibJS/Runtime/Cell.h> #include <LibJS/Runtime/VM.h> namespace JS { |