Make autoloading_const_entry static

This commit is contained in:
Nobuyoshi Nakada 2019-06-23 02:49:39 +09:00
parent c5c3486340
commit aa2f505825
No known key found for this signature in database
GPG Key ID: 4BC7D6DF58D8DF60

View File

@ -2138,7 +2138,7 @@ check_autoload_required(VALUE mod, ID id, const char **loadingpath)
return 0;
}
struct autoload_const *autoloading_const_entry(VALUE mod, ID id);
static struct autoload_const *autoloading_const_entry(VALUE mod, ID id);
MJIT_FUNC_EXPORTED int
rb_autoloading_value(VALUE mod, ID id, VALUE* value, rb_const_flag_t *flag)