1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

suppress unused argument warning

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59837 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2017-09-11 08:50:07 +00:00
parent 21f6916b98
commit 23b9093f38

View file

@ -1333,7 +1333,7 @@ vm_block_handler_type(VALUE block_handler)
}
static inline void
vm_block_handler_verify(VALUE block_handler)
vm_block_handler_verify(MAYBE_UNUSED(VALUE block_handler))
{
VM_ASSERT(block_handler == VM_BLOCK_HANDLER_NONE ||
(vm_block_handler_type(block_handler), 1));