diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-04-26 00:30:05 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-04-26 00:30:05 +0000 |
commit | 6c8852c1d3672cbf61ed5fd1b79fd73d8df87e13 (patch) | |
tree | e91747042f3d0e09f361a5601525b12064c7a999 /range.c | |
parent | 6e5e1b37280fb5328fb6825c7ba58333e287f6de (diff) | |
download | bundler-6c8852c1d3672cbf61ed5fd1b79fd73d8df87e13.tar.gz |
range.c: remove no longer used variable
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58486 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'range.c')
-rw-r--r-- | range.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -37,11 +37,6 @@ static VALUE r_cover_p(VALUE, VALUE, VALUE, VALUE); static void range_init(VALUE range, VALUE beg, VALUE end, VALUE exclude_end) { - VALUE args[2]; - - args[0] = beg; - args[1] = end; - if (!FIXNUM_P(beg) || !FIXNUM_P(end)) { VALUE v; |