summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-06-28 13:09:58 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-06-28 13:09:58 +0000
commit875cca4c07f6099fdefed69ab2ba2303fe9a388b (patch)
tree8486fd9f2fe613d6891843071ad9ec1ce527c028 /hash.c
parentfe0e916701d142341e0ca6ae71b64ad871b3c1bb (diff)
downloadruby-875cca4c07f6099fdefed69ab2ba2303fe9a388b.tar.gz
ruby-875cca4c07f6099fdefed69ab2ba2303fe9a388b.tar.xz
ruby-875cca4c07f6099fdefed69ab2ba2303fe9a388b.zip
* dir.c, eval.c, hash.c, process.c, ruby.c: avoid warning "unused
variable" [ruby-dev:26387] (patch from Kazuhiro NISHIYAMA) git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8670 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/hash.c b/hash.c
index f987181e3..632f0dcaa 100644
--- a/hash.c
+++ b/hash.c
@@ -880,8 +880,6 @@ static VALUE
rb_hash_clear(hash)
VALUE hash;
{
- void *tmp;
-
rb_hash_modify(hash);
if (RHASH(hash)->tbl->num_entries > 0) {
rb_hash_foreach(hash, clear_i, 0);