[前][次][番号順一覧][スレッド一覧]

ruby-changes:49819

From: shyouhei <ko1@a...>
Date: Fri, 19 Jan 2018 01:51:42 +0900 (JST)
Subject: [ruby-changes:49819] shyouhei:r61931 (trunk): rb_global_tbl marked as static

shyouhei	2018-01-18 18:44:52 +0900 (Thu, 18 Jan 2018)

  New Revision: 61931

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=61931

  Log:
    rb_global_tbl marked as static

  Modified files:
    trunk/variable.c
Index: variable.c
===================================================================
--- variable.c	(revision 61930)
+++ variable.c	(revision 61931)
@@ -22,7 +22,7 @@ https://github.com/ruby/ruby/blob/trunk/variable.c#L22
 #include "id_table.h"
 #include "debug_counter.h"
 
-struct rb_id_table *rb_global_tbl;
+static struct rb_id_table *rb_global_tbl;
 static ID autoload, classpath, tmp_classpath, classid;
 
 static void check_before_mod_set(VALUE, ID, VALUE, const char *);

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]