summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authortake_cheeze <[email protected]>2013-09-01 22:50:02 +0900
committertake_cheeze <[email protected]>2013-09-02 00:48:06 +0900
commit8082a37748215462562977dab9b78ae92eca0ad6 (patch)
tree8d275bdde0b2dc6cd3744dddaead9e18c66bf6ce /include
parent3d1fffbd6bce3a6f9a77af3116078574ce8d5fe9 (diff)
downloadmruby-8082a37748215462562977dab9b78ae92eca0ad6.tar.gz
mruby-8082a37748215462562977dab9b78ae92eca0ad6.zip
use uint16_t for line type
Diffstat (limited to 'include')
-rw-r--r--include/mruby/compile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby/compile.h b/include/mruby/compile.h
index 387206686..0f7cffd08 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;
- short lineno;
+ uint16_t lineno;
char const* filename;
} mrb_ast_node;