compile.h: reorder parser_heredoc_info members to reduce alignment gap.

This commit is contained in:
Yukihiro "Matz" Matsumoto
2022-06-11 22:22:26 +09:00
parent c41f24216b
commit 4d70d17af7
+1 -1
View File
@@ -99,9 +99,9 @@ enum mrb_string_type {
struct mrb_parser_heredoc_info {
mrb_bool allow_indent:1;
mrb_bool remove_indent:1;
mrb_bool line_head:1;
size_t indent;
mrb_ast_node *indented;
mrb_bool line_head:1;
enum mrb_string_type type;
const char *term;
int term_len;