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

ruby-changes:45710

From: nobu <ko1@a...>
Date: Mon, 6 Mar 2017 08:36:50 +0900 (JST)
Subject: [ruby-changes:45710] nobu:r57783 (trunk): compile.c: variable type

nobu	2017-03-06 08:36:44 +0900 (Mon, 06 Mar 2017)

  New Revision: 57783

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

  Log:
    compile.c: variable type
    
    * compile.c (iseq_compile_each): fix variable type, use VALUE for
      Symbol.
      http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?revision=57772&view=revision

  Modified files:
    trunk/compile.c
Index: compile.c
===================================================================
--- compile.c	(revision 57782)
+++ compile.c	(revision 57783)
@@ -5268,7 +5268,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ https://github.com/ruby/ruby/blob/trunk/compile.c#L5268
 		LABEL *label;
 		st_data_t data;
 		st_table *labels_table = ISEQ_COMPILE_DATA(iseq)->labels_table;
-		ID label_name;
+		VALUE label_name;
 
 		if (!labels_table) {
 		    labels_table = st_init_numtable();

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

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