aboutsummaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'types.h')
-rw-r--r--types.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/types.h b/types.h
index 30a0e9e..65dcb5a 100644
--- a/types.h
+++ b/types.h
@@ -94,7 +94,10 @@ typedef struct match_s {
struct match_s *child, *nextsibling;
vm_op_t *op;
// Intrusive linked list nodes for garbage collection:
- struct match_s **atme, *next;
+ struct match_s *next;
+#ifdef DEBUG_HEAP
+ struct match_s **atme;
+#endif
int refcount;
} match_t;