From e99ee55abcdbd3057f5ef7d4ef6692457815afaa Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 18 Jun 2014 06:16:39 +0000 Subject: constify parameters * include/ruby/intern.h: constify `argv` parameters. * include/ruby/ruby.h: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46459 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- proc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'proc.c') diff --git a/proc.c b/proc.c index 8153cc9cfd..48aaf863e6 100644 --- a/proc.c +++ b/proc.c @@ -1873,14 +1873,14 @@ method_clone(VALUE self) */ VALUE -rb_method_call(int argc, VALUE *argv, VALUE method) +rb_method_call(int argc, const VALUE *argv, VALUE method) { VALUE proc = rb_block_given_p() ? rb_block_proc() : Qnil; return rb_method_call_with_block(argc, argv, method, proc); } VALUE -rb_method_call_with_block(int argc, VALUE *argv, VALUE method, VALUE pass_procval) +rb_method_call_with_block(int argc, const VALUE *argv, VALUE method, VALUE pass_procval) { VALUE result = Qnil; /* OK */ struct METHOD *data; -- cgit v1.2.3