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

ruby-changes:13364

From: duerst <ko1@a...>
Date: Mon, 28 Sep 2009 19:09:06 +0900 (JST)
Subject: [ruby-changes:13364] Ruby:r25132 (trunk): include/ruby/st.h: aligned prototype of st_hash_uint32 with function

duerst	2009-09-28 19:08:46 +0900 (Mon, 28 Sep 2009)

  New Revision: 25132

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

  Log:
    include/ruby/st.h: aligned prototype of st_hash_uint32 with function
      definition (fixing compiling problem on cygwin)

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

Index: include/ruby/st.h
===================================================================
--- include/ruby/st.h	(revision 25131)
+++ include/ruby/st.h	(revision 25132)
@@ -109,7 +109,7 @@
 int st_strncasecmp(const char *s1, const char *s2, size_t n);
 size_t st_memsize(const st_table *);
 st_index_t st_hash(const void *ptr, size_t len, st_index_t h);
-st_index_t st_hash_uint32(st_index_t h, unsigned int i);
+st_index_t st_hash_uint32(st_index_t h, uint32_t i);
 st_index_t st_hash_uint(st_index_t h, st_index_t i);
 st_index_t st_hash_end(st_index_t h);
 st_index_t st_hash_start(st_index_t h);
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 25131)
+++ ChangeLog	(revision 25132)
@@ -1,3 +1,8 @@
+Mon Sep 28 19:05:05 2009  Martin Duerst  <duerst@i...>
+
+	* include/ruby/st.h: aligned prototype of st_hash_uint32 with function
+	  definition (fixing compiling problem on cygwin)
+
 Mon Sep 28 12:13:15 2009  Yukihiro Matsumoto  <matz@r...>
 
 	* method.h (enum): new method type VM_METHOD_TYPE_MISSING.

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

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