mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Suppress unused-function warnings
This commit is contained in:
parent
f62f020f56
commit
bfc0a71a82
1 changed files with 4 additions and 0 deletions
|
@ -1249,4 +1249,8 @@ rb_yjit_init(struct rb_yjit_options *options)
|
||||||
struct yjit_root_struct *root;
|
struct yjit_root_struct *root;
|
||||||
VALUE yjit_root = TypedData_Make_Struct(0, struct yjit_root_struct, &yjit_root_type, root);
|
VALUE yjit_root = TypedData_Make_Struct(0, struct yjit_root_struct, &yjit_root_type, root);
|
||||||
rb_gc_register_mark_object(yjit_root);
|
rb_gc_register_mark_object(yjit_root);
|
||||||
|
|
||||||
|
(void)yjit_get_cb;
|
||||||
|
(void)yjit_get_ocb;
|
||||||
|
(void)yjit_get_code_page;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue