From 60e752c0c5ae3798105919a43ee194e1e897d429 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 7 Sep 2021 22:34:21 -0700 Subject: Chapter 19.3 --- clox/src/compiler.h | 1 + 1 file changed, 1 insertion(+) (limited to 'clox/src/compiler.h') diff --git a/clox/src/compiler.h b/clox/src/compiler.h index c4376a5..e7023a9 100644 --- a/clox/src/compiler.h +++ b/clox/src/compiler.h @@ -1,6 +1,7 @@ #ifndef COMPILER_H #define COMPILER_H +#include "object.h" #include "vm.h" bool compile(const char *source, Chunk *chunk); -- cgit v1.2.3-54-g00ecf