mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* vm_method.c (obj_respond_to): fix missing argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32617 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fba1063c5f
commit
256eae162c
1 changed files with 1 additions and 1 deletions
|
@ -1254,7 +1254,7 @@ obj_respond_to(int argc, VALUE *argv, VALUE obj)
|
||||||
* See #respond_to?.
|
* See #respond_to?.
|
||||||
*/
|
*/
|
||||||
static VALUE
|
static VALUE
|
||||||
obj_respond_to_missing(VALUE obj, VALUE priv)
|
obj_respond_to_missing(VALUE obj, VALUE mid, VALUE priv)
|
||||||
{
|
{
|
||||||
return Qfalse;
|
return Qfalse;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue