aboutsummaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2020-12-21 21:16:19 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2020-12-21 21:16:39 -0800
commit692af8e8f8b5f9965450d8f2577f435feaa6f80d (patch)
tree26109e5f22a0a66368a11c307cb20368cbc94bbc /internal
parent03f2b093201762031d5be64d0cce85da26c1d3b3 (diff)
downloadruby-692af8e8f8b5f9965450d8f2577f435feaa6f80d.tar.gz
Prefer stdbool in vm_exec
Make the code a bit modern and consistent with some other places.
Diffstat (limited to 'internal')
-rw-r--r--internal/vm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/vm.h b/internal/vm.h
index 6a525b8159..eb193a23dc 100644
--- a/internal/vm.h
+++ b/internal/vm.h
@@ -61,7 +61,7 @@ MJIT_STATIC VALUE ruby_vm_special_exception_copy(VALUE);
PUREFUNC(st_table *rb_vm_fstring_table(void));
MJIT_SYMBOL_EXPORT_BEGIN
-VALUE vm_exec(struct rb_execution_context_struct *, int); /* used in JIT-ed code */
+VALUE vm_exec(struct rb_execution_context_struct *, bool); /* used in JIT-ed code */
MJIT_SYMBOL_EXPORT_END
/* vm_eval.c */