ruby-changes:8507
From: yugui <ko1@a...>
Date: Thu, 30 Oct 2008 01:29:13 +0900 (JST)
Subject: [ruby-changes:8507] Ruby:r20041 (ruby_1_9_1): merged r20020 from trunk into ruby_1_9_1.
yugui 2008-10-30 01:26:51 +0900 (Thu, 30 Oct 2008) New Revision: 20041 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=20041 Log: merged r20020 from trunk into ruby_1_9_1. * complex.c (imp1, imp2): should declare type. [BUG] at IA-64 Modified files: branches/ruby_1_9_1/ChangeLog branches/ruby_1_9_1/complex.c Index: ruby_1_9_1/complex.c =================================================================== --- ruby_1_9_1/complex.c (revision 20040) +++ ruby_1_9_1/complex.c (revision 20041) @@ -429,7 +429,7 @@ #define imp1(n) \ extern VALUE rb_math_##n(VALUE x);\ inline static VALUE \ -m_##n##_bang(x)\ +m_##n##_bang(VALUE x)\ {\ return rb_math_##n(x);\ } @@ -437,7 +437,7 @@ #define imp2(n) \ extern VALUE rb_math_##n(VALUE x, VALUE y);\ inline static VALUE \ -m_##n##_bang(x, y)\ +m_##n##_bang(VALUE x, VALUE y)\ {\ return rb_math_##n(x, y);\ } Index: ruby_1_9_1/ChangeLog =================================================================== --- ruby_1_9_1/ChangeLog (revision 20040) +++ ruby_1_9_1/ChangeLog (revision 20041) @@ -18,6 +18,11 @@ test/webrick/test_server.rb, test/webrick/test_filehandler.rb: use webrick log as an assertion message. +Wed Oct 29 15:50:00 2008 TAKANO Mitsuhiro (takano32) <tak@n...> + + * complex.c (imp1, imp2): should declare type. + [BUG] at IA-64 + Wed Oct 29 14:36:50 2008 Nobuyoshi Nakada <nobu@r...> * common.mk (revision.h): have to be updated daily or by non-trivial -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/