зеркало из https://github.com/github/ruby.git
vm_insnhelper.c: extra semicolon
* vm_insnhelper.c (CHECK): remove extra semicolon and fold too long line. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55806 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
dba03c38c5
Коммит
bcd35a6c79
|
@ -136,7 +136,11 @@ vm_check_frame(VALUE type,
|
|||
VALUE given_magic = type & VM_FRAME_MAGIC_MASK;
|
||||
VM_ASSERT(FIXNUM_P(type));
|
||||
|
||||
#define CHECK(magic, req_block, req_me, req_cref, is_cframe) case magic: vm_check_frame_detail(type, req_block, req_me, req_cref, specval, cref_or_me, is_cframe, iseq); break;
|
||||
#define CHECK(magic, req_block, req_me, req_cref, is_cframe) \
|
||||
case magic: \
|
||||
vm_check_frame_detail(type, req_block, req_me, req_cref, \
|
||||
specval, cref_or_me, is_cframe, iseq); \
|
||||
break
|
||||
switch (given_magic) {
|
||||
/* BLK ME CREF CFRAME */
|
||||
CHECK(VM_FRAME_MAGIC_METHOD, TRUE, TRUE, FALSE, FALSE);
|
||||
|
|
Загрузка…
Ссылка в новой задаче