diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-05-19 15:52:47 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-05-19 15:52:47 +0900 |
| commit | aeca23166b8e822ba8c3126ac9b1b0e76914fab7 (patch) | |
| tree | 15f647c236ae13d264e8f8f0b996eb2284c63e6c /src/codegen.c | |
| parent | cb8b4691f09cf935f119595f1b3e755f7fc0f8f3 (diff) | |
| download | mruby-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.c | 5 |
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> |
