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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/clox/src/compiler.h b/clox/src/compiler.h
index e7023a9..7de1c20 100644
--- a/clox/src/compiler.h
+++ b/clox/src/compiler.h
@@ -4,6 +4,6 @@
#include "object.h"
#include "vm.h"
-bool compile(const char *source, Chunk *chunk);
+ObjFunction *compile(const char *source);
#endif