summaryrefslogtreecommitdiffstats
path: root/intern.h
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-10-29 06:16:01 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-10-29 06:16:01 +0000
commit9033177cf4b87e1f0d5a4faddfa116e05d818a7a (patch)
tree239972797f1d798d6adb75a150fbfbd453d5751f /intern.h
parent55c422151f16002dae7a0a899d93eb139c459f46 (diff)
downloadruby-9033177cf4b87e1f0d5a4faddfa116e05d818a7a.tar.gz
ruby-9033177cf4b87e1f0d5a4faddfa116e05d818a7a.tar.xz
ruby-9033177cf4b87e1f0d5a4faddfa116e05d818a7a.zip
* intern.h (rb_protect_inspect): follow the change of array.c.
* eval.c (rb_exec_end_proc): follow the change of rb_protect(). * eval.c (method_proc, umethod_proc, rb_catch): cast the first parameter of rb_iterate() to avoid VC++ warning. * range.c (range_step): ditto. * ext/sdbm/init.c (fsdbm_update, fsdbm_replace): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1801 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'intern.h')
-rw-r--r--intern.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern.h b/intern.h
index 21776fe21..8337de458 100644
--- a/intern.h
+++ b/intern.h
@@ -50,7 +50,7 @@ VALUE rb_ary_assoc _((VALUE, VALUE));
VALUE rb_ary_rassoc _((VALUE, VALUE));
VALUE rb_ary_includes _((VALUE, VALUE));
VALUE rb_ary_cmp _((VALUE, VALUE));
-VALUE rb_protect_inspect _((VALUE(*)(VALUE,VALUE),VALUE,VALUE));
+VALUE rb_protect_inspect _((VALUE(*)(ANYARGS),VALUE,VALUE));
VALUE rb_inspecting_p _((VALUE));
/* bignum.c */
VALUE rb_big_clone _((VALUE));