From 56dccab73e3ed71ea203285994a2594105608016 Mon Sep 17 00:00:00 2001 From: yugui Date: Wed, 29 Oct 2008 16:26:51 +0000 Subject: merged r20020 from trunk into ruby_1_9_1. * complex.c (imp1, imp2): should declare type. [BUG] at IA-64 git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@20041 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ complex.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 712270809..e97b238d0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -18,6 +18,11 @@ Wed Oct 29 20:45:08 2008 Yusuke Endoh 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) + + * complex.c (imp1, imp2): should declare type. + [BUG] at IA-64 + Wed Oct 29 14:36:50 2008 Nobuyoshi Nakada * common.mk (revision.h): have to be updated daily or by non-trivial diff --git a/complex.c b/complex.c index b4ac3e95e..95a278e3a 100644 --- a/complex.c +++ b/complex.c @@ -429,7 +429,7 @@ nucomp_f_complex(int argc, VALUE *argv, VALUE klass) #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 @@ m_##n##_bang(x)\ #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);\ } -- cgit