Commit cdb49ab6 authored by Jun Hiroe's avatar Jun Hiroe

Refactor fix_to_f in numeric.c

parent 212b3409
......@@ -1073,11 +1073,7 @@ fix_rshift(mrb_state *mrb, mrb_value x)
static mrb_value
fix_to_f(mrb_state *mrb, mrb_value num)
{
mrb_float val;
val = (mrb_float)mrb_fixnum(num);
return mrb_float_value(mrb, val);
return mrb_float_value(mrb, (mrb_float)mrb_fixnum(num));
}
/*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment