summaryrefslogtreecommitdiffstats
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
commit5a227c5fa6d681bc45a7358d59b84c69a6ad572c (patch)
treee6477aee9c758cd32b3c1d77b97b1da0c8e3fe5a /vm_eval.c
parent1411322fcbc939635de70d9ba9e6e221cc9e987d (diff)
downloadruby-5a227c5fa6d681bc45a7358d59b84c69a6ad572c.tar.gz
ruby-5a227c5fa6d681bc45a7358d59b84c69a6ad572c.tar.xz
ruby-5a227c5fa6d681bc45a7358d59b84c69a6ad572c.zip
* vm_eval.c (enum call_type): get rid of last comma.
git-svn-id: http://svn.ruby-lang.org/repos/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 0f93a96d2..c78d9e5fb 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);