1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* numeric.c (flo_divmod): remvoed unused variable.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15775 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-03-14 05:03:28 +00:00
parent bc8c8e90d5
commit d6ca5fefd0

View file

@ -734,7 +734,7 @@ dbl2ival(double d)
static VALUE
flo_divmod(VALUE x, VALUE y)
{
double fy, div, mod, val;
double fy, div, mod;
volatile VALUE a, b;
switch (TYPE(y)) {