summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-11-17 21:17:19 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-11-20 16:04:45 +0900
commitfac2498e0299f13dffe4f09a7dd7657fb49bf643 (patch)
treead3780bc4d89b0f430d9149dce7a409794d89246 /internal
parent4b899f91647b7da1174492f891de3d6ee8128458 (diff)
[Bug #11213] let defined?(super) call respond_to_missing?
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3777
Diffstat (limited to 'internal')
-rw-r--r--internal/vm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/vm.h b/internal/vm.h
index 5af422e0e0..d146bc6850 100644
--- a/internal/vm.h
+++ b/internal/vm.h
@@ -99,7 +99,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 obj, ID id, int priv);
+int rb_ec_obj_respond_to(struct rb_execution_context_struct *ec, VALUE klass, VALUE obj, ID id, int priv);
MJIT_SYMBOL_EXPORT_END
/* vm_dump.c */