summaryrefslogtreecommitdiff
path: root/vm_eval.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-03 07:21:48 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-03 07:21:48 +0000
commit6bc6708b970adb20333f3fa58827d05219ec3157 (patch)
tree440c8f0e154c641483b3c75f2491e47c9edf9c97 /vm_eval.c
parent040ce056101bc9a8d9a5b0ed5d6a5835ec31be26 (diff)
vm_eval.c: argument names
* vm_eval.c (make_no_method_exception): enumerate argument meanings instead of a magic number. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53725 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_eval.c')
-rw-r--r--vm_eval.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/vm_eval.c b/vm_eval.c
index a3b04dc13c..13a9efe556 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -685,7 +685,13 @@ static VALUE
make_no_method_exception(VALUE exc, VALUE format, VALUE obj, int argc, const VALUE *argv)
{
int n = 0;
- VALUE args[3];
+ enum {
+ arg_mesg,
+ arg_name,
+ arg_args,
+ args_size
+ };
+ VALUE args[args_size];
if (!format) {
format = rb_fstring_cstr("undefined method `%s' for %s%s%s");