summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-12 08:11:24 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-12 08:11:24 +0000
commit87944f8e61f4686adc7fd69081e21f53ae863361 (patch)
tree2045f2407fc1156b2716b4b0e9030f9e0dec0e4e
parent4ce15bf491bf119c67a3469b4a4bbee42f0457e1 (diff)
* method.h: remove unused declaration.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50476 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--method.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5878dea5dd..9b50927fcd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue May 12 17:08:03 2015 Koichi Sasada <ko1@atdot.net>
+
+ * method.h: remove unused declaration.
+
Mon May 11 10:58:45 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* gems/bundled_gems: Update minitest-5.6.1 and power_assert-0.2.3.
diff --git a/method.h b/method.h
index 2cd40a5753..3563102f43 100644
--- a/method.h
+++ b/method.h
@@ -60,8 +60,6 @@ typedef enum {
END_OF_ENUMERATION(VM_METHOD_TYPE)
} rb_method_type_t;
-struct rb_call_info_struct;
-
typedef struct rb_method_cfunc_struct {
VALUE (*func)(ANYARGS);
VALUE (*invoker)(VALUE (*func)(ANYARGS), VALUE recv, int argc, const VALUE *argv);