diff options
| author | Masaki Muranaka <[email protected]> | 2013-03-03 10:54:00 +0900 |
|---|---|---|
| committer | Masaki Muranaka <[email protected]> | 2013-03-03 10:54:00 +0900 |
| commit | 6cd7017ec11b0cbe40e8dbe462e5eda9ad7ce97c (patch) | |
| tree | e9b051e73cc45f58a1ca2964e33228803752e497 /src/numeric.c | |
| parent | bc46c374b40354b1f1320d5bea75fd852d0ea9ed (diff) | |
| download | mruby-6cd7017ec11b0cbe40e8dbe462e5eda9ad7ce97c.tar.gz mruby-6cd7017ec11b0cbe40e8dbe462e5eda9ad7ce97c.zip | |
Remove trailing whitespaces. This is just a cosmetic change.
Diffstat (limited to 'src/numeric.c')
| -rw-r--r-- | src/numeric.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/numeric.c b/src/numeric.c index b5bff652d..5aa577828 100644 --- a/src/numeric.c +++ b/src/numeric.c @@ -306,7 +306,7 @@ static mrb_value num_eql(mrb_state *mrb, mrb_value x) { mrb_value y; - + mrb_get_args(mrb, "o", &y); if (mrb_type(x) != mrb_type(y)) return mrb_false_value(); if (mrb_equal(mrb, x, y)) { @@ -699,7 +699,7 @@ mrb_value mrb_fixnum_mul(mrb_state *mrb, mrb_value x, mrb_value y) { mrb_int a; - + a = mrb_fixnum(x); if (a == 0) return x; if (mrb_fixnum_p(y)) { @@ -1126,7 +1126,7 @@ mrb_value mrb_fixnum_plus(mrb_state *mrb, mrb_value x, mrb_value y) { mrb_int a; - + a = mrb_fixnum(x); if (a == 0) return y; if (mrb_fixnum_p(y)) { @@ -1165,7 +1165,7 @@ mrb_value mrb_fixnum_minus(mrb_state *mrb, mrb_value x, mrb_value y) { mrb_int a; - + a = mrb_fixnum(x); if (mrb_fixnum_p(y)) { mrb_int b, c; |
