ruby-changes:56202
From: Nobuyoshi <ko1@a...>
Date: Sun, 23 Jun 2019 02:50:43 +0900 (JST)
Subject: [ruby-changes:56202] Nobuyoshi Nakada: aa2f505825 (trunk): Make autoloading_const_entry static
https://git.ruby-lang.org/ruby.git/commit/?id=aa2f505825 From aa2f505825a914d1c5480d4e92696a1fa1ad0887 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Sun, 23 Jun 2019 02:49:39 +0900 Subject: Make autoloading_const_entry static diff --git a/variable.c b/variable.c index dc01667..a691098 100644 --- a/variable.c +++ b/variable.c @@ -2138,7 +2138,7 @@ check_autoload_required(VALUE mod, ID id, const char **loadingpath) https://github.com/ruby/ruby/blob/trunk/variable.c#L2138 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) -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/