1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* class.c: remove needless include pragmra for method.h.

* struct.c: ditto.
* vm_method.c: ditto.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50712 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2015-06-01 06:44:16 +00:00
parent 900931cc7a
commit cd909b553f
4 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,11 @@
Mon Jun 1 15:43:03 2015 Koichi Sasada <ko1@atdot.net>
* class.c: remove needless include pragmra for method.h.
* struct.c: ditto.
* vm_method.c: ditto.
Mon Jun 1 05:42:00 2015 Koichi Sasada <ko1@atdot.net>
* eval_intern.h, vm_method.c: move macros to functions.

View file

@ -25,7 +25,6 @@
#include "internal.h"
#include "ruby/st.h"
#include "method.h"
#include "constant.h"
#include "vm_core.h"
#include <ctype.h>

View file

@ -11,7 +11,6 @@
#include "internal.h"
#include "vm_core.h"
#include "method.h"
VALUE rb_method_for_self_aref(VALUE name, VALUE arg, rb_insn_func_t func);
VALUE rb_method_for_self_aset(VALUE name, VALUE arg, rb_insn_func_t func);

View file

@ -20,7 +20,6 @@
#else
#define GLOBAL_METHOD_CACHE(c,m) (rb_bug("global method cache disabled improperly"), NULL)
#endif
#include "method.h"
#define NOEX_NOREDEF 0
#ifndef NOEX_NOREDEF