LibJS: Disable HEAP_DEBUG logging on non-SerenityOS platforms

This makes it a bit easier to work with LibJS on Linux for now.
This commit is contained in:
Andreas Kling 2020-03-25 09:49:14 +01:00
commit 7a5ef0a87f
Notes: sideshowbarker 2024-07-19 08:08:30 +09:00

View file

@ -40,7 +40,9 @@
# include <pthread.h>
#endif
#ifdef __serenity__
#define HEAP_DEBUG
#endif
namespace JS {