summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/Symbol.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-05-17 19:50:20 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-17 19:53:00 +0200
commit6714cf36318fb81d1a6e019af0ff919fd33fccba (patch)
treeb33b79b089be6e79adefa80ecfa2ffc622f310fe /Userland/Libraries/LibJS/Runtime/Symbol.h
parentee6600ea2407ab557ea020b494ad18f69316a663 (diff)
downloadserenity-6714cf36318fb81d1a6e019af0ff919fd33fccba.zip
LibJS: Move Cell.{cpp,h} from Runtime/ to Heap/
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/Symbol.h')
-rw-r--r--Userland/Libraries/LibJS/Runtime/Symbol.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Symbol.h b/Userland/Libraries/LibJS/Runtime/Symbol.h
index 450b26189e..8839447b57 100644
--- a/Userland/Libraries/LibJS/Runtime/Symbol.h
+++ b/Userland/Libraries/LibJS/Runtime/Symbol.h
@@ -7,7 +7,7 @@
#pragma once
#include <AK/String.h>
-#include <LibJS/Runtime/Cell.h>
+#include <LibJS/Heap/Cell.h>
namespace JS {