summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-18 07:01:46 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-18 07:01:46 +0000
commit1b8b699d9fe2e1d3dddf3caee71d1cb95f294b6d (patch)
tree68b60455e2a77b44deaa1c5b6d497039f182e7ed
parent1979d9ae1f7e6c2f0d3016a40064bda0a64d09f1 (diff)
unused variable.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2580 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--bignum.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/bignum.c b/bignum.c
index 132b611be1..ddb1636d69 100644
--- a/bignum.c
+++ b/bignum.c
@@ -856,8 +856,6 @@ static VALUE
rb_big_eq(x, y)
VALUE x, y;
{
- double d;
-
switch (TYPE(y)) {
case T_FIXNUM:
y = rb_int2big(FIX2LONG(y));