use uint16_t for line type

This commit is contained in:
take_cheeze
2013-09-01 22:50:02 +09:00
parent 3d1fffbd6b
commit 8082a37748
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -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;