aboutsummaryrefslogtreecommitdiffstats
path: root/iseq.h
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-10 02:42:06 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-10 02:42:06 +0000
commitfe1f0df92b87357c5592cb1ecafd50f9ef40ce4c (patch)
treecee7a8a1410942d38c186c671b64d66a89e3ed60 /iseq.h
parent9ea7e27d582990f7628f071a676b6f325e12f7a4 (diff)
downloadruby-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/iseq.h b/iseq.h
index 2f3c460e8e..abe888afec 100644
--- a/iseq.h
+++ b/iseq.h
@@ -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