summaryrefslogtreecommitdiff
path: root/internal/vm.h
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-01-13 16:49:05 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-01-13 18:11:46 +0900
commit85b5d4c8bf4cdcba4f1af65f2bc0c8ac716cb795 (patch)
treeb7a5aa2ebe8cc22ddf94a6edca03469d9f309e9e /internal/vm.h
parent9441f3f97087a4325ee80911859d37da41fa5050 (diff)
Revert "[Bug #11213] let defined?(super) call respond_to_missing?"
This reverts commit fac2498e0299f13dffe4f09a7dd7657fb49bf643 for now, due to [Bug #17509], the breakage in the case `super` is called in `respond_to?`.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4057
Diffstat (limited to 'internal/vm.h')
-rw-r--r--internal/vm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/vm.h b/internal/vm.h
index 80f2c792a3..689b4fa61f 100644
--- a/internal/vm.h
+++ b/internal/vm.h
@@ -94,7 +94,7 @@ MJIT_SYMBOL_EXPORT_END
/* vm_method.c */
struct rb_execution_context_struct;
MJIT_SYMBOL_EXPORT_BEGIN
-int rb_ec_obj_respond_to(struct rb_execution_context_struct *ec, VALUE klass, VALUE obj, ID id, int priv);
+int rb_ec_obj_respond_to(struct rb_execution_context_struct *ec, VALUE obj, ID id, int priv);
MJIT_SYMBOL_EXPORT_END
/* vm_dump.c */