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

ruby-changes:14007

From: usa <ko1@a...>
Date: Tue, 17 Nov 2009 16:01:43 +0900 (JST)
Subject: [ruby-changes:14007] Ruby:r25815 (ruby_1_9_1): * insns.def (opt_case_dispatch): need cast.

usa	2009-11-17 16:01:27 +0900 (Tue, 17 Nov 2009)

  New Revision: 25815

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=25815

  Log:
    * insns.def (opt_case_dispatch): need cast.

  Modified files:
    branches/ruby_1_9_1/ChangeLog
    branches/ruby_1_9_1/insns.def
    branches/ruby_1_9_1/version.h

Index: ruby_1_9_1/ChangeLog
===================================================================
--- ruby_1_9_1/ChangeLog	(revision 25814)
+++ ruby_1_9_1/ChangeLog	(revision 25815)
@@ -1,3 +1,7 @@
+Tue Nov 17 16:01:02 2009  NAKAMURA Usaku  <usa@r...>
+
+	* insns.def (opt_case_dispatch): need cast.
+
 Tue Nov 17 15:46:23 2009  NAKAMURA Usaku  <usa@r...>
 
 	* dir.c (READDIR): this branch doesn't have rb_w32_readdir_with_enc().
Index: ruby_1_9_1/insns.def
===================================================================
--- ruby_1_9_1/insns.def	(revision 25814)
+++ ruby_1_9_1/insns.def	(revision 25815)
@@ -1251,7 +1251,7 @@
 	    key, -1
 	};
 
-	st_foreach(RHASH_TBL(hash), opt_case_dispatch_i, &arg);
+	st_foreach(RHASH_TBL(hash), opt_case_dispatch_i, (st_data_t)&arg);
 
 	if (arg.label != -1) {
 	    JUMP(arg.label);
Index: ruby_1_9_1/version.h
===================================================================
--- ruby_1_9_1/version.h	(revision 25814)
+++ ruby_1_9_1/version.h	(revision 25815)
@@ -1,5 +1,5 @@
 #define RUBY_VERSION "1.9.1"
-#define RUBY_PATCHLEVEL 337
+#define RUBY_PATCHLEVEL 338
 #define RUBY_VERSION_MAJOR 1
 #define RUBY_VERSION_MINOR 9
 #define RUBY_VERSION_TEENY 1

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

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