From daa37be5495393ce3e4654e00e44099f627e6cd4 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Mon, 8 Jun 2020 19:17:59 +0900 Subject: Rename `struct mrb_locals` to `struct mrb_lvinfo`. That stands for "local variable information". --- include/mruby/irep.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/mruby/irep.h b/include/mruby/irep.h index 6633bc73e..9d30f2797 100644 --- a/include/mruby/irep.h +++ b/include/mruby/irep.h @@ -21,7 +21,7 @@ enum irep_pool_type { IREP_TT_FLOAT, }; -struct mrb_locals { +struct mrb_lvinfo { /* local variable info (name, idx) */ mrb_sym name; uint16_t r; }; @@ -37,7 +37,7 @@ typedef struct mrb_irep { const mrb_sym *syms; const struct mrb_irep **reps; - const struct mrb_locals *lv; + const struct mrb_lvinfo *lv; /* debug info */ struct mrb_irep_debug_info* debug_info; -- cgit v1.2.3