From a654675df4def367767fc910bf684288f4648242 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Jedli=C4=8Dka?= Date: Sun, 7 Jul 2019 16:46:03 +0200 Subject: [PATCH] v0.4.0 --- src/common.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/common.h b/src/common.h index d5e25d8..b7760ac 100644 --- a/src/common.h +++ b/src/common.h @@ -9,7 +9,7 @@ #define STR(x) STRINGIFY(x) #define BLU_VERSION_MAJOR 0 -#define BLU_VERSION_MINOR 3 +#define BLU_VERSION_MINOR 4 #define BLU_VERSION_PATCH 0 #define BLU_VERSION BLU_VERSION_MAJOR * 1000000 + BLU_VERSION_MINOR * 1000 + BLU_VERSION_MINOR @@ -18,9 +18,9 @@ #ifdef DEBUG #define DEBUG_PRINT_CODE -// #define DEBUG_TRACE_EXECUTION -// #define DEBUG_TRACE_GC -// #define DEBUG_STRESS_GC +#define DEBUG_TRACE_EXECUTION +#define DEBUG_TRACE_GC +#define DEBUG_STRESS_GC #endif #define UINT8_COUNT (UINT8_MAX + 1)