summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime
diff options
context:
space:
mode:
authorAndrew Kaster <akaster@serenityos.org>2022-10-09 15:23:23 -0600
committerLinus Groh <mail@linusgroh.de>2022-10-10 12:23:12 +0200
commit828441852f803a67c771910702baefe12cf2d995 (patch)
treef76838c0f99d57648b493f4cd00167a467ac4cbd /Userland/Libraries/LibJS/Runtime
parent896d4e8dc1a91f577231afef9d127b51d7cc3630 (diff)
downloadserenity-828441852f803a67c771910702baefe12cf2d995.zip
Everywhere: Replace uses of __serenity__ with AK_OS_SERENITY
Now that we have OS macros for essentially every supported OS, let's try to use them everywhere.
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime')
-rw-r--r--Userland/Libraries/LibJS/Runtime/GlobalObject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp b/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp
index 003add64d5..68f5b1ec53 100644
--- a/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp
+++ b/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp
@@ -200,7 +200,7 @@ GlobalObject::~GlobalObject() = default;
JS_DEFINE_NATIVE_FUNCTION(GlobalObject::gc)
{
-#ifdef __serenity__
+#ifdef AK_OS_SERENITY
dbgln("Forced garbage collection requested!");
#endif
vm.heap().collect_garbage();