aboutsummaryrefslogtreecommitdiffstats
path: root/vm_insnhelper.h
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-02 06:41:46 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-02 06:41:46 +0000
commit265123638ccf1b866850bfa332c4a95dfc63ab6f (patch)
tree4f5facbf215265098b426fe687b5068bf0e52c36 /vm_insnhelper.h
parentd305c75ff8c3a3317de0ffbf3d9632f517f426fe (diff)
downloadruby-265123638ccf1b866850bfa332c4a95dfc63ab6f.tar.gz
comma at the end of enum is a C99ism
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61549 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_insnhelper.h')
-rw-r--r--vm_insnhelper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm_insnhelper.h b/vm_insnhelper.h
index c76f0cad22..71ca408bf2 100644
--- a/vm_insnhelper.h
+++ b/vm_insnhelper.h
@@ -66,11 +66,11 @@ enum vm_regan_regtype {
VM_REGAN_EP = 2,
VM_REGAN_CFP = 3,
VM_REGAN_SELF = 4,
- VM_REGAN_ISEQ = 5,
+ VM_REGAN_ISEQ = 5
};
enum vm_regan_acttype {
VM_REGAN_ACT_GET = 0,
- VM_REGAN_ACT_SET = 1,
+ VM_REGAN_ACT_SET = 1
};
#if VM_COLLECT_USAGE_DETAILS