aboutsummaryrefslogtreecommitdiffstats
path: root/method.h
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-10-16 15:32:19 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-10-16 15:32:19 +0000
commit0eb6ef5b5b03b35b70c1189fce9bc09650521c54 (patch)
tree86eda57824b99648af5328d185bfd63b6299631e /method.h
parentf8c2a968dd3628dc0a5f3b671bd41a08104ce466 (diff)
downloadruby-0eb6ef5b5b03b35b70c1189fce9bc09650521c54.tar.gz
* method.h(rb_method_definition_struct): remove a comma after the last element
of enum. fix for r37198. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37226 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'method.h')
-rw-r--r--method.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/method.h b/method.h
index 2baf9c5291..1341846442 100644
--- a/method.h
+++ b/method.h
@@ -67,7 +67,7 @@ typedef struct rb_method_definition_struct {
VALUE proc; /* should be mark */
enum method_optimized_type {
OPTIMIZED_METHOD_TYPE_SEND,
- OPTIMIZED_METHOD_TYPE_CALL,
+ OPTIMIZED_METHOD_TYPE_CALL
} optimize_type;
} body;
int alias_count;