ruby-changes:40182
From: shugo <ko1@a...>
Date: Sat, 24 Oct 2015 12:02:26 +0900 (JST)
Subject: [ruby-changes:40182] shugo:r52263 (trunk): * vm_insnhelper.c: remove the typedef redeclaration of
shugo 2015-10-24 12:01:55 +0900 (Sat, 24 Oct 2015) New Revision: 52263 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=52263 Log: * vm_insnhelper.c: remove the typedef redeclaration of vm_call_handler. Modified files: trunk/ChangeLog trunk/vm_insnhelper.c Index: ChangeLog =================================================================== --- ChangeLog (revision 52262) +++ ChangeLog (revision 52263) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sat Oct 24 11:57:59 2015 Shugo Maeda <shugo@r...> + + * vm_insnhelper.c: remove the typedef redeclaration of + vm_call_handler. + Sat Oct 24 07:29:12 2015 Nobuyoshi Nakada <nobu@r...> * lib/forwardable.rb (def_instance_delegator, def_single_delegator): Index: vm_insnhelper.c =================================================================== --- vm_insnhelper.c (revision 52262) +++ vm_insnhelper.c (revision 52263) @@ -1243,7 +1243,6 @@ static VALUE vm_call_method_nome(rb_thre https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L1243 static VALUE vm_call_method_each_type(rb_thread_t *th, rb_control_frame_t *cfp, struct rb_calling_info *calling, const struct rb_call_info *ci, struct rb_call_cache *cc); static inline VALUE vm_call_method(rb_thread_t *th, rb_control_frame_t *cfp, struct rb_calling_info *calling, const struct rb_call_info *ci, struct rb_call_cache *cc); -typedef VALUE (*vm_call_handler)(struct rb_thread_struct *th, struct rb_control_frame_struct *cfp, struct rb_calling_info *calling, const struct rb_call_info *ci, struct rb_call_cache *cc); static vm_call_handler vm_call_iseq_setup_func(const struct rb_call_info *ci, const int param_size, const int local_size); static rb_method_definition_t *method_definition_create(rb_method_type_t type, ID mid); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/