Commit 5b47ec7a authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

remove a blank line

parent 48ff4f2d
...@@ -358,7 +358,6 @@ mrb_time_minus(mrb_state *mrb, mrb_value self) ...@@ -358,7 +358,6 @@ mrb_time_minus(mrb_state *mrb, mrb_value self)
tm2 = mrb_get_datatype(mrb, other, &mrb_time_type); tm2 = mrb_get_datatype(mrb, other, &mrb_time_type);
if (tm2) { if (tm2) {
f = (mrb_float)(tm->sec - tm2->sec) f = (mrb_float)(tm->sec - tm2->sec)
+ (mrb_float)(tm->usec - tm2->usec) / 1.0e6; + (mrb_float)(tm->usec - tm2->usec) / 1.0e6;
return mrb_float_value(f); return mrb_float_value(f);
......
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