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

* array.c (rb_ary_take_while, rb_ary_drop_while): removed unused

variables.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@16026 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-04-15 04:29:48 +00:00
parent 9cee075559
commit 4ef650d064

View file

@ -3577,7 +3577,6 @@ static VALUE
rb_ary_take_while(ary)
VALUE ary;
{
VALUE result;
long i;
RETURN_ENUMERATOR(ary, 0, 0);
@ -3632,7 +3631,6 @@ static VALUE
rb_ary_drop_while(ary)
VALUE ary;
{
VALUE result;
long i;
RETURN_ENUMERATOR(ary, 0, 0);