diff options
author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-01-02 06:41:46 +0000 |
---|---|---|
committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-01-02 06:41:46 +0000 |
commit | 1836af769cc8fc78a5d017b5a51aebfa6794f7b5 (patch) | |
tree | 4f5facbf215265098b426fe687b5068bf0e52c36 | |
parent | 67b547d06a35d928113fc66208a6310f335e6935 (diff) |
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
-rw-r--r-- | vm_insnhelper.h | 4 |
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 |