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/Runtime/Symbol.h | |
parent | ee6600ea2407ab557ea020b494ad18f69316a663 (diff) | |
download | serenity-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.h | 2 |
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 { |