summaryrefslogtreecommitdiff
path: root/vm_eval.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-30 08:01:48 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-30 08:01:48 +0000
commit1932c5909700c07d39320afc31c59da1158ac5e1 (patch)
treee6477aee9c758cd32b3c1d77b97b1da0c8e3fe5a /vm_eval.c
parent166a53c560aa24a1e16a9e1cb505bab5dff0462d (diff)
* vm_eval.c (enum call_type): get rid of last comma.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25574 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_eval.c')
-rw-r--r--vm_eval.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/vm_eval.c b/vm_eval.c
index 0f93a96d27..c78d9e5fbd 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -26,6 +26,7 @@ typedef enum call_type {
CALL_PUBLIC,
CALL_FCALL,
CALL_VCALL,
+ CALL_TYPE_MAX
} call_type;
static VALUE send_internal(int argc, const VALUE *argv, VALUE recv, call_type scope);