diff options
author | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-12-10 02:42:06 +0000 |
---|---|---|
committer | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-12-10 02:42:06 +0000 |
commit | fe1f0df92b87357c5592cb1ecafd50f9ef40ce4c (patch) | |
tree | cee7a8a1410942d38c186c671b64d66a89e3ed60 /iseq.h | |
parent | 9ea7e27d582990f7628f071a676b6f325e12f7a4 (diff) | |
download | ruby-fe1f0df92b87357c5592cb1ecafd50f9ef40ce4c.tar.gz |
remove a comma at end of enumerator list.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.h')
-rw-r--r-- | iseq.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -51,7 +51,7 @@ struct iseq_catch_table_entry { CATCH_TYPE_RETRY, CATCH_TYPE_BREAK, CATCH_TYPE_REDO, - CATCH_TYPE_NEXT, + CATCH_TYPE_NEXT } type; VALUE iseq; unsigned long start; @@ -107,7 +107,7 @@ enum defined_type { DEFINED_YIELD, DEFINED_REF, DEFINED_ZSUPER, - DEFINED_FUNC, + DEFINED_FUNC }; #if defined __GNUC__ && __GNUC__ >= 4 |