From 12183fa250ec979ae55980a038d70714c2f2fca1 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Fri, 20 Sep 2013 06:09:41 +0900 Subject: rename node->filename to node->filename_index --- include/mruby/compile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/mruby/compile.h b/include/mruby/compile.h index ed4e9612c..f8bb50e41 100644 --- a/include/mruby/compile.h +++ b/include/mruby/compile.h @@ -37,7 +37,7 @@ void mrbc_partial_hook(mrb_state *mrb, mrbc_context *c, int (*partial_hook)(stru /* AST node structure */ typedef struct mrb_ast_node { struct mrb_ast_node *car, *cdr; - uint16_t lineno, filename; + uint16_t lineno, filename_index; } mrb_ast_node; /* lexer states */ -- cgit v1.2.3