From ec6f077809d87aa3f529e0fc233297653608a283 Mon Sep 17 00:00:00 2001 From: shyouhei Date: Tue, 22 Oct 2013 12:59:27 +0000 Subject: * vm_core.h (enum): avoid syntax error. * method.h: ditto. * internal.h: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43390 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm_core.h') diff --git a/vm_core.h b/vm_core.h index 1af68a219f..e79fd7ccaf 100644 --- a/vm_core.h +++ b/vm_core.h @@ -642,7 +642,7 @@ typedef enum { VM_DEFINECLASS_TYPE_SINGLETON_CLASS = 0x01, VM_DEFINECLASS_TYPE_MODULE = 0x02, /* 0x03..0x06 is reserved */ - VM_DEFINECLASS_TYPE_MASK = 0x07, + VM_DEFINECLASS_TYPE_MASK = 0x07 } rb_vm_defineclass_type_t; #define VM_DEFINECLASS_TYPE(x) ((rb_vm_defineclass_type_t)(x) & VM_DEFINECLASS_TYPE_MASK) -- cgit v1.2.3