summaryrefslogtreecommitdiffhomepage
path: root/src/codegen.c
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-05-19 15:52:47 +0900
committerYukihiro Matsumoto <[email protected]>2012-05-19 15:52:47 +0900
commitaeca23166b8e822ba8c3126ac9b1b0e76914fab7 (patch)
tree15f647c236ae13d264e8f8f0b996eb2284c63e6c /src/codegen.c
parentcb8b4691f09cf935f119595f1b3e755f7fc0f8f3 (diff)
downloadmruby-aeca23166b8e822ba8c3126ac9b1b0e76914fab7.tar.gz
mruby-aeca23166b8e822ba8c3126ac9b1b0e76914fab7.zip
remove dependency to node.h and pool.h
Diffstat (limited to 'src/codegen.c')
-rw-r--r--src/codegen.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/codegen.c b/src/codegen.c
index e039e72dc..769f9e538 100644
--- a/src/codegen.c
+++ b/src/codegen.c
@@ -8,11 +8,12 @@
#define CODEGEN_DUMP
#include "mruby.h"
+#include "mruby/string.h"
#include "mruby/irep.h"
-#include "mruby/compile.h"
#include "mruby/proc.h"
+#include "mruby/compile.h"
#include "opcode.h"
-#include "mruby/string.h"
+#include "node.h"
#include <string.h>
#include <stdlib.h>