Rename union mrb_value to union mrb_value_.

Since some compiler complains when we `typedef` `mrb_value`.
This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-08-07 19:38:41 +09:00
parent 53e46be7e2
commit 4e56e0defc
3 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -151,7 +151,7 @@ mrb_obj_id(mrb_value obj)
MRB_API mrb_value
mrb_word_boxing_float_value(mrb_state *mrb, mrb_float f)
{
union mrb_value v;
union mrb_value_ v;
v.p = mrb_obj_alloc(mrb, MRB_TT_FLOAT, mrb->float_class);
v.fp->f = f;