summaryrefslogtreecommitdiff
path: root/vm_method.c
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-12-03 11:52:14 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-12-03 11:52:14 +0000
commit4a1cfe70dc31f9be8a12908d85b51297d61b8eae (patch)
tree3c183287e1549d284dff0c5a364153124befe680 /vm_method.c
parentd267b2e347b0ef226c132a881ed11a89e622df24 (diff)
* variable.c (set_const_visibility): print a warning when no argument
is passwd to Module#private_constant. [ruby-list:48558] * vm_method.c (set_method_visibility): ditto for Module#private_class_method. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33936 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_method.c')
-rw-r--r--vm_method.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/vm_method.c b/vm_method.c
index f1235dcd47..3811f48246 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -985,6 +985,11 @@ set_method_visibility(VALUE self, int argc, VALUE *argv, rb_method_flag_t ex)
{
int i;
secure_visibility(self);
+
+ if (argc == 0) {
+ rb_warning("%s with no argument is just ignored", rb_id2name(rb_frame_callee()));
+ }
+
for (i = 0; i < argc; i++) {
VALUE v = argv[i];
ID id = rb_check_id(&v);