From 4d70d17af7051c9c5979c1bd5313e5b86f44cd26 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Sat, 11 Jun 2022 22:22:26 +0900 Subject: [PATCH] compile.h: reorder parser_heredoc_info members to reduce alignment gap. --- include/mruby/compile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mruby/compile.h b/include/mruby/compile.h index 5c52a13a7..6b1b0ec23 100644 --- a/include/mruby/compile.h +++ b/include/mruby/compile.h @@ -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;