summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-10 06:57:17 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-10 06:57:17 +0000
commit42eadff3a113de824dee177ac242c6a7d8f8f2d6 (patch)
treeb1a415925df06e51479480c39eb2b979311efc03 /numeric.c
parent72f980510962c55dedda97a36208994afe732533 (diff)
* numeric.c (do_coerce): remove an unused variable.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38759 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/numeric.c b/numeric.c
index ea926a62ee..046527eab3 100644
--- a/numeric.c
+++ b/numeric.c
@@ -215,9 +215,6 @@ static int
do_coerce(VALUE *x, VALUE *y, int err)
{
VALUE ary;
- VALUE a[2];
-
- a[0] = *x; a[1] = *y;
ary = rb_check_funcall(*y, id_coerce, 1, x);
if (ary == Qundef) {