This commit is contained in:
Takashi Kokubun 2023-03-16 10:48:17 -07:00
Родитель 9947574b9c
Коммит ed18093200
1 изменённых файлов: 1 добавлений и 1 удалений

2
vm.c
Просмотреть файл

@ -415,7 +415,7 @@ jit_exec(rb_execution_context_t *ec)
} }
} }
#else #else
static inline jit_func_t jit_compile(rb_execution_context_t *ec) { return 0; } static inline rb_jit_func_t jit_compile(rb_execution_context_t *ec) { return 0; }
static inline VALUE jit_exec(rb_execution_context_t *ec) { return Qundef; } static inline VALUE jit_exec(rb_execution_context_t *ec) { return Qundef; }
#endif #endif