diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-06-04 16:02:01 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-06-04 16:02:01 +0000 |
commit | 3619a8b52d876469193b3cecaa80d7ff13f09002 (patch) | |
tree | 9a2558aace8851c813640d209942f0b2633bee87 /class.c | |
parent | 9d0fc5a8192655f76ad296363c387242f6fe4b6f (diff) | |
download | ruby-3619a8b52d876469193b3cecaa80d7ff13f09002.tar.gz |
* method.h: constify rb_method_refined_t::orig_me.
Also constify the following functions.
* rb_resolve_refined_method()
* rb_method_entry_with_refinements()
* rb_method_entry_without_refinements()
* rb_method_entry_copy()'s parameter.
* class.c: catch up this fix.
* vm_insnhelper.c: ditto.
* vm_method.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50770 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'class.c')
-rw-r--r-- | class.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -914,7 +914,7 @@ move_refined_method(st_data_t key, st_data_t value, st_data_t data) if (me->def->type == VM_METHOD_TYPE_REFINED) { if (me->def->body.refined.orig_me) { - rb_method_entry_t *orig_me = me->def->body.refined.orig_me, *new_me; + const rb_method_entry_t *orig_me = me->def->body.refined.orig_me, *new_me; me->def->body.refined.orig_me = NULL; new_me = rb_method_entry_clone(me); st_add_direct(tbl, key, (st_data_t) new_me); |