* ext/bigdecimal/bigdecimal.c (BigDecimal_div2, BigDecimal_add2,
BigDecimal_sub2, BigDecimal_mult2, VpLimitRound): remove meaningless casts to get rid of compiler warnings. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29360 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ee1a4eefa5
commit
98d7c2b8f1
@ -1,3 +1,9 @@
|
||||
Wed Sep 29 12:45:30 2010 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* ext/bigdecimal/bigdecimal.c (BigDecimal_div2, BigDecimal_add2,
|
||||
BigDecimal_sub2, BigDecimal_mult2, VpLimitRound): remove meaningless
|
||||
casts to get rid of compiler warnings.
|
||||
|
||||
Wed Sep 29 12:35:13 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/bigdecimal/bigdecimal.c (VPrint, VpToString): fix format.
|
||||
|
@ -1178,7 +1178,7 @@ BigDecimal_div2(int argc, VALUE *argv, VALUE self)
|
||||
GUARD_OBJ(res,VpCreateRbObject((mx * 2 + 2)*VpBaseFig(), "#0"));
|
||||
VpDivd(cv,res,av,bv);
|
||||
VpSetPrecLimit(pl);
|
||||
VpLeftRound(cv,(int)VpGetRoundMode(),ix);
|
||||
VpLeftRound(cv,VpGetRoundMode(),ix);
|
||||
return ToValue(cv);
|
||||
}
|
||||
}
|
||||
@ -1196,7 +1196,7 @@ BigDecimal_add2(VALUE self, VALUE b, VALUE n)
|
||||
VALUE c = BigDecimal_add(self,b);
|
||||
VpSetPrecLimit(pl);
|
||||
GUARD_OBJ(cv,GetVpValue(c,1));
|
||||
VpLeftRound(cv,(int)VpGetRoundMode(),mx);
|
||||
VpLeftRound(cv,VpGetRoundMode(),mx);
|
||||
return ToValue(cv);
|
||||
}
|
||||
}
|
||||
@ -1213,7 +1213,7 @@ BigDecimal_sub2(VALUE self, VALUE b, VALUE n)
|
||||
VALUE c = BigDecimal_sub(self,b);
|
||||
VpSetPrecLimit(pl);
|
||||
GUARD_OBJ(cv,GetVpValue(c,1));
|
||||
VpLeftRound(cv,(int)VpGetRoundMode(),mx);
|
||||
VpLeftRound(cv,VpGetRoundMode(),mx);
|
||||
return ToValue(cv);
|
||||
}
|
||||
}
|
||||
@ -1230,7 +1230,7 @@ BigDecimal_mult2(VALUE self, VALUE b, VALUE n)
|
||||
VALUE c = BigDecimal_mult(self,b);
|
||||
VpSetPrecLimit(pl);
|
||||
GUARD_OBJ(cv,GetVpValue(c,1));
|
||||
VpLeftRound(cv,(int)VpGetRoundMode(),mx);
|
||||
VpLeftRound(cv,VpGetRoundMode(),mx);
|
||||
return ToValue(cv);
|
||||
}
|
||||
}
|
||||
@ -4792,7 +4792,7 @@ VpLimitRound(Real *c, size_t ixDigit)
|
||||
if(!ix) return 0;
|
||||
if(!ixDigit) ixDigit = c->Prec-1;
|
||||
if((ix+BASE_FIG-1)/BASE_FIG > ixDigit+1) return 0;
|
||||
return VpLeftRound(c, (int)VpGetRoundMode(), (ssize_t)ix);
|
||||
return VpLeftRound(c, VpGetRoundMode(), (ssize_t)ix);
|
||||
}
|
||||
|
||||
/* If I understand correctly, this is only ever used to round off the final decimal
|
||||
|
Loading…
x
Reference in New Issue
Block a user