From bb6c0f03a7c0875c20efc79506316da2cb4c4aed Mon Sep 17 00:00:00 2001 From: shyouhei Date: Mon, 5 Feb 2018 04:02:55 +0000 Subject: comma at the end of enum is a C99ism git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62219 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- mjit.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mjit.h') diff --git a/mjit.h b/mjit.h index 90e0f6b8fe..223b8e5d6f 100644 --- a/mjit.h +++ b/mjit.h @@ -22,7 +22,7 @@ enum rb_mjit_iseq_func { /* ISEQ included not compilable insn or some assertion failed */ NOT_COMPILABLE_JIT_ISEQ_FUNC = 2, /* End mark */ - LAST_JIT_ISEQ_FUNC = 3, + LAST_JIT_ISEQ_FUNC = 3 }; /* C compiler used to generate native code. */ @@ -32,7 +32,7 @@ enum rb_mjit_cc { /* GNU Compiler Collection */ MJIT_CC_GCC = 1, /* LLVM/Clang */ - MJIT_CC_CLANG = 2, + MJIT_CC_CLANG = 2 }; /* MJIT options which can be defined on the MRI command line. */ -- cgit v1.2.3