diff options
author | mrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-11-22 05:50:34 +0000 |
---|---|---|
committer | mrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-11-22 05:50:34 +0000 |
commit | 4131c29f8794d3ad774409692d3a4eb9a6d2e49d (patch) | |
tree | 0117f90efab478cd942838e9c032e7649c3b1484 /ext/bigdecimal | |
parent | 5efbf8a44e5106d1d39c57db5ae28f2f6852ca63 (diff) | |
download | bundler-4131c29f8794d3ad774409692d3a4eb9a6d2e49d.tar.gz |
* ext/bigdecimal/bigdecimal.c: Fix indentation.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43789 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/bigdecimal')
-rw-r--r-- | ext/bigdecimal/bigdecimal.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c index 533333228a..096cc4bf60 100644 --- a/ext/bigdecimal/bigdecimal.c +++ b/ext/bigdecimal/bigdecimal.c @@ -2674,18 +2674,18 @@ BigMath_s_exp(VALUE klass, VALUE x, VALUE vprec) * BigDecimalCmp function. */ switch (TYPE(x)) { case T_DATA: - if (!is_kind_of_BigDecimal(x)) break; - vx = DATA_PTR(x); - negative = VpGetSign(vx) < 0; - infinite = VpIsPosInf(vx) || VpIsNegInf(vx); - nan = VpIsNaN(vx); - break; + if (!is_kind_of_BigDecimal(x)) break; + vx = DATA_PTR(x); + negative = VpGetSign(vx) < 0; + infinite = VpIsPosInf(vx) || VpIsNegInf(vx); + nan = VpIsNaN(vx); + break; case T_FIXNUM: - /* fall through */ + /* fall through */ case T_BIGNUM: - vx = GetVpValue(x, 0); - break; + vx = GetVpValue(x, 0); + break; case T_FLOAT: flo = RFLOAT_VALUE(x); |