mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
remove spaces after open parens
This commit is contained in:
+1
-1
@@ -474,7 +474,7 @@ flo_infinite_p(mrb_state *mrb, mrb_value num)
|
||||
mrb_float value = mrb_float(num);
|
||||
|
||||
if (isinf(value)) {
|
||||
return mrb_fixnum_value( value < 0 ? -1 : 1 );
|
||||
return mrb_fixnum_value(value < 0 ? -1 : 1);
|
||||
}
|
||||
return mrb_nil_value();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user