summaryrefslogtreecommitdiffstats
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
commitc2fdb05934be44bb10ba0438d737c7c3265963d7 (patch)
tree68b60455e2a77b44deaa1c5b6d497039f182e7ed
parenteca0b534bafbbcf274d97e51dc33c5d930494dc8 (diff)
unused variable.
git-svn-id: http://svn.ruby-lang.org/repos/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 132b611be..ddb1636d6 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));