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

TRUE is not defined here...

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57558 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2017-02-07 04:24:44 +00:00
parent 361edea73d
commit 950d15bc97

View file

@ -1271,7 +1271,7 @@ static inline int
vm_block_handler_verify(VALUE block_handler)
{
VM_ASSERT(block_handler == VM_BLOCK_HANDLER_NONE ||
(vm_block_handler_type(block_handler), TRUE));
(vm_block_handler_type(block_handler), 1));
return 1;
}