summaryrefslogtreecommitdiff
path: root/vm_insnhelper.c
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-11-25 15:05:53 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-11-25 15:09:09 +0900
commit09e76e982801a838688ea80be29844ed91c23f46 (patch)
tree123e2e669a8eee829445c8c67bc57abff8dd7248 /vm_insnhelper.c
parente27acb61485189fd7647741b6ca19920989dec03 (diff)
Improve consistency of bool/true/false
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r--vm_insnhelper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index 9078903b84..a99282891b 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -889,7 +889,7 @@ vm_get_iclass(rb_control_frame_t *cfp, VALUE klass)
}
static inline VALUE
-vm_get_ev_const(rb_execution_context_t *ec, VALUE orig_klass, ID id, int allow_nil, int is_defined)
+vm_get_ev_const(rb_execution_context_t *ec, VALUE orig_klass, ID id, bool allow_nil, int is_defined)
{
void rb_const_warn_if_deprecated(const rb_const_entry_t *ce, VALUE klass, ID id);
VALUE val;