summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-21 11:19:59 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-21 11:19:59 +0000
commitcd8b9033e625d84fc0cae4d8938c5afd0bfd48ce (patch)
tree55161abe9fb4937465af5b9ed52be9f00a413c35 /compile.c
parente2acebe3d2e89cd6101a07fc0c115a9a6d65b5bd (diff)
merge revision(s) 64515:
remove `const` warning. * compile.c (iseq_ibf_load): remove `const` to pass iseq as no `const` parameter. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_5@65274 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index c3d62845e4..03407eadd8 100644
--- a/compile.c
+++ b/compile.c
@@ -9507,7 +9507,7 @@ const rb_iseq_t *
iseq_ibf_load(VALUE str)
{
struct ibf_load *load;
- const rb_iseq_t *iseq;
+ rb_iseq_t *iseq;
VALUE loader_obj = TypedData_Make_Struct(0, struct ibf_load, &ibf_load_type, load);
ibf_load_setup(load, loader_obj, str);