aboutsummaryrefslogtreecommitdiffstats
path: root/iseq.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-23 09:53:16 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-23 09:53:16 +0000
commiteed613f4b1fa65705fab0ce617ea370ac53b2dfa (patch)
tree711756a19978139a195dee817cd5a44c9fd5ec70 /iseq.c
parent18f6978625fe8adc4fe6e414e73e97d52b566592 (diff)
downloadruby-eed613f4b1fa65705fab0ce617ea370ac53b2dfa.tar.gz
* vm_core.h: constify rb_iseq_constant_body::local_table and
rb_iseq_param_keyword::table and rb_iseq_param_keyword::default_values. * compile.c: catch up this fix. * iseq.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51357 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 4a59286ef3..d5253509d1 100644
--- a/iseq.c
+++ b/iseq.c
@@ -1365,7 +1365,7 @@ rb_iseq_disasm(const rb_iseq_t *iseq)
unsigned int size;
int i;
long l;
- ID *tbl;
+ const ID *tbl;
size_t n;
enum {header_minlen = 72};