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

ruby-changes:4520

From: ko1@a...
Date: Mon, 14 Apr 2008 19:20:38 +0900 (JST)
Subject: [ruby-changes:4520] usa - Ruby:r16013 (ruby_1_8): * enum.c (inject_i, inject_op_i): prototype.

usa	2008-04-14 19:19:41 +0900 (Mon, 14 Apr 2008)

  New Revision: 16013

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

  Log:
    * enum.c (inject_i, inject_op_i): prototype.
    


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

Index: ruby_1_8/ChangeLog
===================================================================
--- ruby_1_8/ChangeLog	(revision 16012)
+++ ruby_1_8/ChangeLog	(revision 16013)
@@ -1,3 +1,7 @@
+Mon Apr 14 19:18:55 2008  NAKAMURA Usaku  <usa@r...>
+
+	* enum.c (inject_i, inject_op_i): prototype.
+
 Mon Apr 14 19:10:47 2008  Akinori MUSHA  <knu@i...>
 
 	* enum.c New methods: Enumerable#take, #take_while, #drop and
@@ -3,5 +7,4 @@
 	  #drop_while; backported from 1.9.
 
-
 Mon Apr 14 18:50:15 2008  Akinori MUSHA  <knu@i...>
 
Index: ruby_1_8/enum.c
===================================================================
--- ruby_1_8/enum.c	(revision 16012)
+++ ruby_1_8/enum.c	(revision 16013)
@@ -436,6 +436,7 @@
     return ary;
 }
 
+static VALUE inject_i _((VALUE, VALUE));
 static VALUE
 inject_i(i, p)
     VALUE i;
@@ -451,6 +452,7 @@
     return Qnil;
 }
 
+static VALUE inject_op_i _((VALUE, VALUE));
 static VALUE
 inject_op_i(i, p)
     VALUE i;

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

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