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

ruby-changes:13335

From: nobu <ko1@a...>
Date: Sat, 26 Sep 2009 16:27:01 +0900 (JST)
Subject: [ruby-changes:13335] Ruby:r25099 (trunk): * include/ruby/intern.h (rb_hash_{start,uint32,uint,end}): fixed

nobu	2009-09-26 16:26:46 +0900 (Sat, 26 Sep 2009)

  New Revision: 25099

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

  Log:
    * include/ruby/intern.h (rb_hash_{start,uint32,uint,end}): fixed
      prototypes.

  Modified files:
    trunk/ChangeLog
    trunk/include/ruby/intern.h

Index: include/ruby/intern.h
===================================================================
--- include/ruby/intern.h	(revision 25098)
+++ include/ruby/intern.h	(revision 25099)
@@ -635,10 +635,10 @@
 VALUE rb_str_append(VALUE, VALUE);
 VALUE rb_str_concat(VALUE, VALUE);
 st_index_t rb_memhash(const void *ptr, long len);
-VALUE rb_hash_start(VALUE);
-VALUE rb_hash_uint32(VALUE, unsigned int);
-VALUE rb_hash_uint(VALUE, VALUE);
-VALUE rb_hash_end(VALUE);
+st_index_t rb_hash_start(st_index_t);
+st_index_t rb_hash_uint32(st_index_t, uint32_t);
+st_index_t rb_hash_uint(st_index_t, st_index_t);
+st_index_t rb_hash_end(st_index_t);
 st_index_t rb_str_hash(VALUE);
 int rb_str_hash_cmp(VALUE,VALUE);
 int rb_str_comparable(VALUE, VALUE);
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 25098)
+++ ChangeLog	(revision 25099)
@@ -1,3 +1,8 @@
+Sat Sep 26 16:26:44 2009  Nobuyoshi Nakada  <nobu@r...>
+
+	* include/ruby/intern.h (rb_hash_{start,uint32,uint,end}): fixed
+	  prototypes.
+
 Sat Sep 26 13:26:55 2009  Marc-Andre Lafortune  <ruby-core@m...>
 
 	* lib/net/http.rb (transport_request): Handle timeout error by

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

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