summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-08-05 12:55:25 +0200
committerAndreas Kling <kling@serenityos.org>2022-08-05 12:55:25 +0200
commitaaa4f6d2870454acb6e74e1f8db898ec0439a3d4 (patch)
tree60eaf9c6bd88a040a3a6af5c8a3ad87afffe30b6
parentc77a0974ab6c03a132dd1b03fdd5594fc893d23c (diff)
downloadserenity-aaa4f6d2870454acb6e74e1f8db898ec0439a3d4.zip
LibJS: Run clang-format on Realm.cpp
-rw-r--r--Userland/Libraries/LibJS/Runtime/Realm.cpp2
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 {