diff options
| author | take_cheeze <[email protected]> | 2013-09-01 22:50:02 +0900 |
|---|---|---|
| committer | take_cheeze <[email protected]> | 2013-09-02 00:48:06 +0900 |
| commit | 8082a37748215462562977dab9b78ae92eca0ad6 (patch) | |
| tree | 8d275bdde0b2dc6cd3744dddaead9e18c66bf6ce /include | |
| parent | 3d1fffbd6bce3a6f9a77af3116078574ce8d5fe9 (diff) | |
| download | mruby-8082a37748215462562977dab9b78ae92eca0ad6.tar.gz mruby-8082a37748215462562977dab9b78ae92eca0ad6.zip | |
use uint16_t for line type
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/compile.h | 2 |
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; |
