aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/compiler.h
diff options
context:
space:
mode:
authorGravatar Tom Willemse2021-09-07 22:34:21 -0700
committerGravatar Tom Willemse2021-09-07 22:34:32 -0700
commit60e752c0c5ae3798105919a43ee194e1e897d429 (patch)
treee364b168776c5e800e5e17c6812b6217a725c2f8 /clox/src/compiler.h
parentc1cbc359e9f1c2451e37d42fc6d2df1aae19f3ec (diff)
downloadcrafting-interpreters-60e752c0c5ae3798105919a43ee194e1e897d429.tar.gz
crafting-interpreters-60e752c0c5ae3798105919a43ee194e1e897d429.zip
Chapter 19.3
Diffstat (limited to 'clox/src/compiler.h')
-rw-r--r--clox/src/compiler.h1
1 files changed, 1 insertions, 0 deletions
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);