aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2022-08-13 14:21:08 -0700
committerGravatar Tom Willemse2022-08-13 14:21:08 -0700
commit389908c49936cd8fcb3170fadcd217ae9f0f5ff8 (patch)
tree4be3497f3fcab6f45d24e11ef37fc3d70c6300c4
parentac0f95683ff94d20114c46b365088910dd60fdda (diff)
downloadcrafting-interpreters-389908c49936cd8fcb3170fadcd217ae9f0f5ff8.tar.gz
crafting-interpreters-389908c49936cd8fcb3170fadcd217ae9f0f5ff8.zip
Turn off debugging
-rw-r--r--clox/src/common.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/clox/src/common.h b/clox/src/common.h
index 6dd187a..bfb76f4 100644
--- a/clox/src/common.h
+++ b/clox/src/common.h
@@ -5,11 +5,11 @@
#include <stddef.h>
#include <stdint.h>
-#define DEBUG_PRINT_CODE
-#define DEBUG_TRACE_EXECUTION
+/* #define DEBUG_PRINT_CODE */
+/* #define DEBUG_TRACE_EXECUTION */
-#define DEBUG_STRESS_GC
-#define DEBUG_LOG_GC
+/* #define DEBUG_STRESS_GC */
+/* #define DEBUG_LOG_GC */
#define UINT8_COUNT (UINT8_MAX + 1)