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

Prefer stdbool in vm_exec

Make the code a bit modern and consistent with some other places.
This commit is contained in:
Takashi Kokubun 2020-12-21 21:16:19 -08:00
parent 03f2b09320
commit 692af8e8f8
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD
6 changed files with 15 additions and 15 deletions

View file

@ -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 */