* method.h (rb_method_type_t): remove a comma at end of

enumerator list.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25192 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2009-10-02 15:45:09 +00:00
Родитель e66470a106
Коммит 7054856938
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Sat Oct 3 00:43:52 2009 NARUSE, Yui <naruse@ruby-lang.org>
* method.h (rb_method_type_t): remove a comma at end of
enumerator list.
Sat Oct 3 00:31:04 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* range.c (discrete_object_p): needs the argument type to get rid

Просмотреть файл

@ -40,7 +40,7 @@ typedef enum {
VM_METHOD_TYPE_UNDEF,
VM_METHOD_TYPE_NOTIMPLEMENTED,
VM_METHOD_TYPE_OPTIMIZED, /* Kernel#send, Proc#call, etc */
VM_METHOD_TYPE_MISSING, /* wrapper for method_missing(id) */
VM_METHOD_TYPE_MISSING /* wrapper for method_missing(id) */
} rb_method_type_t;
typedef struct rb_method_cfunc_struct {