diff options
author | Andreas Kling <kling@serenityos.org> | 2022-08-05 12:55:25 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-08-05 12:55:25 +0200 |
commit | aaa4f6d2870454acb6e74e1f8db898ec0439a3d4 (patch) | |
tree | 60eaf9c6bd88a040a3a6af5c8a3ad87afffe30b6 /Userland/Libraries | |
parent | c77a0974ab6c03a132dd1b03fdd5594fc893d23c (diff) | |
download | serenity-aaa4f6d2870454acb6e74e1f8db898ec0439a3d4.zip |
LibJS: Run clang-format on Realm.cpp
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Realm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Realm.cpp b/Userland/Libraries/LibJS/Runtime/Realm.cpp index d074b84dad..f6dfddcab0 100644 --- a/Userland/Libraries/LibJS/Runtime/Realm.cpp +++ b/Userland/Libraries/LibJS/Runtime/Realm.cpp @@ -6,11 +6,11 @@ */ #include <AK/TypeCasts.h> +#include <LibJS/Heap/DeferGC.h> #include <LibJS/Runtime/GlobalEnvironment.h> #include <LibJS/Runtime/GlobalObject.h> #include <LibJS/Runtime/Realm.h> #include <LibJS/Runtime/VM.h> -#include <LibJS/Heap/DeferGC.h> namespace JS { |