From aa2f505825a914d1c5480d4e92696a1fa1ad0887 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sun, 23 Jun 2019 02:49:39 +0900 Subject: [PATCH] Make autoloading_const_entry static --- variable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variable.c b/variable.c index dc0166774e..a6910985fa 100644 --- a/variable.c +++ b/variable.c @@ -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)