aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/compiler.h
diff options
context:
space:
mode:
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);