diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-08-26 02:25:05 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-08-26 02:25:05 +0900 |
| commit | 73a012c80806c5891579903d1bc1f51b424ce0bf (patch) | |
| tree | 06a818f4acc7b4ef2fd0954439421532a080bc39 /src/numeric.c | |
| parent | ecc77829ce76ad18995095bd39ffeae3e3663fac (diff) | |
| parent | 6961317fb3b4fa30cdb591f568777101720bdb41 (diff) | |
| download | mruby-73a012c80806c5891579903d1bc1f51b424ce0bf.tar.gz mruby-73a012c80806c5891579903d1bc1f51b424ce0bf.zip | |
Merge pull request #2561 from cubicdaiya/issues/space_EOL
Remove spaces in end-of-line.
Diffstat (limited to 'src/numeric.c')
| -rw-r--r-- | src/numeric.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/numeric.c b/src/numeric.c index 3f211ca70..5cf85fc7d 100644 --- a/src/numeric.c +++ b/src/numeric.c @@ -399,7 +399,7 @@ flo_eq(mrb_state *mrb, mrb_value x) switch (mrb_type(y)) { case MRB_TT_FIXNUM: - return mrb_bool_value(mrb_float(x) == (mrb_float)mrb_fixnum(y)); + return mrb_bool_value(mrb_float(x) == (mrb_float)mrb_fixnum(y)); case MRB_TT_FLOAT: return mrb_bool_value(mrb_float(x) == mrb_float(y)); default: |
