1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 16:18:12 +00:00

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
parent 2fc56abd4b
commit 7a5ef0a87f

View file

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