Remove unnecessary break from numeric.c.

This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-06-23 13:10:51 +09:00
parent 9dfe50f1d9
commit 95360a17f2
-1
View File
@@ -419,7 +419,6 @@ value_int64(mrb_state *mrb, mrb_value x)
switch (mrb_type(x)) {
case MRB_TT_FIXNUM:
return (int64_t)mrb_fixnum(x);
break;
case MRB_TT_FLOAT:
return (int64_t)mrb_float(x);
default: