From 7a5ef0a87f2cd2ef29587185faedba381be505d5 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 25 Mar 2020 09:49:14 +0100 Subject: LibJS: Disable HEAP_DEBUG logging on non-SerenityOS platforms This makes it a bit easier to work with LibJS on Linux for now. --- Libraries/LibJS/Heap/Heap.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Libraries') diff --git a/Libraries/LibJS/Heap/Heap.cpp b/Libraries/LibJS/Heap/Heap.cpp index b3853680c4..c75702bd35 100644 --- a/Libraries/LibJS/Heap/Heap.cpp +++ b/Libraries/LibJS/Heap/Heap.cpp @@ -40,7 +40,9 @@ # include #endif +#ifdef __serenity__ #define HEAP_DEBUG +#endif namespace JS { -- cgit v1.2.3