summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--class.c1
-rw-r--r--struct.c1
-rw-r--r--vm_method.c1
4 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 17f9cd43db..ee9dd6d98f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/class.c b/class.c
index 2409e0d68b..cbeeb05300 100644
--- a/class.c
+++ b/class.c
@@ -25,7 +25,6 @@
#include "internal.h"
#include "ruby/st.h"
-#include "method.h"
#include "constant.h"
#include "vm_core.h"
#include <ctype.h>
diff --git a/struct.c b/struct.c
index cd427ffef5..7e5504ac3e 100644
--- a/struct.c
+++ b/struct.c
@@ -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);
diff --git a/vm_method.c b/vm_method.c
index 1fdb84524e..11131fc807 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -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