diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-04-11 08:36:47 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-04-11 08:36:47 +0000 |
| commit | 5da8584c52e843591f78d1d4e330a18b9b30b93d (patch) | |
| tree | 385808b9d86f9a32a0263af8674e4b42922b39fe | |
| parent | a5c6cc3b22e8c4ca7aa28b88b26bd7a4eb18821b (diff) | |
| download | ruby-5da8584c52e843591f78d1d4e330a18b9b30b93d.tar.gz ruby-5da8584c52e843591f78d1d4e330a18b9b30b93d.tar.xz ruby-5da8584c52e843591f78d1d4e330a18b9b30b93d.zip | |
* enum.c (count_i): modified to shut warning up.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15975 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | enum.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Fri Apr 11 17:35:06 2008 Yukihiro Matsumoto <matz@ruby-lang.org> + + * enum.c (count_i): modified to shut warning up. + Fri Apr 11 17:25:09 2008 Akinori MUSHA <knu@iDaemons.org> * enum.c (count_i, count_iter_i, enum_count, enum_find_index): @@ -81,7 +81,7 @@ enum_grep(VALUE obj, VALUE pat) } static VALUE -count_i(VALUE i, VALUE memop) +count_i(VALUE i, VALUE memop, int argc, VALUE *argv) { VALUE *memo = (VALUE*)memop; |
