Shrink file name table size to uint16_t; ref #4138

This commit is contained in:
Yukihiro "Matz" Matsumoto
2018-11-15 23:26:37 +09:00
parent faf51f82c7
commit 7e3e8d8ed5
2 changed files with 8 additions and 4 deletions
+2 -2
View File
@@ -158,8 +158,8 @@ struct mrb_parser_state {
struct mrb_parser_message warn_buffer[10];
mrb_sym* filename_table;
size_t filename_table_length;
int current_filename_index;
uint16_t filename_table_length;
uint16_t current_filename_index;
struct mrb_jmpbuf* jmp;
};