aboutsummaryrefslogtreecommitdiffstats
path: root/iseq.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-21 09:01:44 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-21 09:01:44 +0000
commit7239111ef5384ff9bde6139ba11c05e387dcb9b6 (patch)
tree11de9f286ee0cdfda76737fc36635f2297411494 /iseq.c
parent928d89c77b81b7ef560c0f40b0119dfcd31f3605 (diff)
downloadruby-7239111ef5384ff9bde6139ba11c05e387dcb9b6.tar.gz
* iseq.c: constify.
* iseq.h: ditto. * method.h: ditto. * proc.c: ditto. * vm_method.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50593 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iseq.c b/iseq.c
index 3ae92e8555..037df44d2c 100644
--- a/iseq.c
+++ b/iseq.c
@@ -1508,7 +1508,7 @@ static VALUE
iseq_s_of(VALUE klass, VALUE body)
{
VALUE ret = Qnil;
- rb_iseq_t *iseq;
+ const rb_iseq_t *iseq;
rb_secure(1);