summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mruby/irep.h4
1 files changed, 2 insertions, 2 deletions
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;