summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-07 04:24:44 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-07 04:24:44 +0000
commit950d15bc97a57252edcef98ff83c07c87757095e (patch)
tree9283b1a2932c56efc4d93b3e81c397768ca1e195 /vm_core.h
parent361edea73d9051ef50c8f7156c93776367fe9913 (diff)
TRUE is not defined here...
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57558 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_core.h b/vm_core.h
index 3104d389b7..bcb0aae7ce 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -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;
}