From 8ec913756107cc8e6aee965d0dc080039d4995ad Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 9 Sep 2021 22:57:03 -0700 Subject: Chapter 19.5 --- clox/src/object.h | 1 + 1 file changed, 1 insertion(+) (limited to 'clox/src/object.h') diff --git a/clox/src/object.h b/clox/src/object.h index a26077f..965b905 100644 --- a/clox/src/object.h +++ b/clox/src/object.h @@ -17,6 +17,7 @@ typedef enum { struct Obj { ObjType type; + struct Obj *next; }; struct ObjString { -- cgit v1.2.3-54-g00ecf