diff options
author | Nobuyoshi Nakada <[email protected]> | 2019-12-01 20:26:28 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-12-01 20:26:28 +0900 |
commit | 4e03a7298b3a99de9c57f9a4934d38445cad1b10 (patch) | |
tree | b2b386a938cb26414b642d4d9e8d7a4919a08c4d /mjit.h | |
parent | cb760f36aae42a63738394f170444b6ae4405b82 (diff) |
Constified mjit_init
Diffstat (limited to 'mjit.h')
-rw-r--r-- | mjit.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -80,7 +80,7 @@ extern void rb_mjit_recompile_iseq(const rb_iseq_t *iseq); RUBY_SYMBOL_EXPORT_END extern bool mjit_compile(FILE *f, const rb_iseq_t *iseq, const char *funcname); -extern void mjit_init(struct mjit_options *opts); +extern void mjit_init(const struct mjit_options *opts); extern void mjit_gc_start_hook(void); extern void mjit_gc_exit_hook(void); extern void mjit_free_iseq(const rb_iseq_t *iseq); |