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

ruby-changes:5201

From: usa <ko1@a...>
Date: Fri, 30 May 2008 05:29:40 +0900 (JST)
Subject: [ruby-changes:5201] Ruby:r16696 (ruby_1_8): * enum.c (count_i, count_iter_i, count_all_i): add prototypes for VC.

usa	2008-05-30 05:29:27 +0900 (Fri, 30 May 2008)

  New Revision: 16696

  Modified files:
    branches/ruby_1_8/ChangeLog
    branches/ruby_1_8/enum.c

  Log:
    * enum.c (count_i, count_iter_i, count_all_i): add prototypes for VC.
    


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8/enum.c?r1=16696&r2=16695&diff_format=u
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8/ChangeLog?r1=16696&r2=16695&diff_format=u

Index: ruby_1_8/ChangeLog
===================================================================
--- ruby_1_8/ChangeLog	(revision 16695)
+++ ruby_1_8/ChangeLog	(revision 16696)
@@ -1,3 +1,7 @@
+Fri May 30 05:28:18 2008  NAKAMURA Usaku  <usa@r...>
+
+	* enum.c (count_i, count_iter_i, count_all_i): add prototypes for VC.
+
 Fri May 30 04:32:07 2008  Akinori MUSHA  <knu@i...>
 
 	* enum.c (count_i, count_iter_i): Sync with trunk.
Index: ruby_1_8/enum.c
===================================================================
--- ruby_1_8/enum.c	(revision 16695)
+++ ruby_1_8/enum.c	(revision 16696)
@@ -113,6 +113,7 @@
     return ary;
 }
 
+static VALUE count_i _((VALUE, VALUE));
 static VALUE
 count_i(i, memop)
     VALUE i, memop;
@@ -125,6 +126,7 @@
     return Qnil;
 }
 
+static VALUE count_iter_i _((VALUE, VALUE));
 static VALUE
 count_iter_i(i, memop)
     VALUE i, memop;
@@ -137,6 +139,7 @@
     return Qnil;
 }
 
+static VALUE count_all_i _((VALUE, VALUE));
 static VALUE
 count_all_i(i, memop)
     VALUE i, memop;

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

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