ruby-changes:15758
From: kazu <ko1@a...>
Date: Sun, 9 May 2010 05:50:40 +0900 (JST)
Subject: [ruby-changes:15758] Ruby:r27686 (ruby_1_9_2): * include/ruby/ruby.h (rb_intern): fix compile error.
kazu 2010-05-09 05:50:22 +0900 (Sun, 09 May 2010) New Revision: 27686 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=27686 Log: * include/ruby/ruby.h (rb_intern): fix compile error. Modified files: branches/ruby_1_9_2/ChangeLog branches/ruby_1_9_2/include/ruby/ruby.h Index: ruby_1_9_2/include/ruby/ruby.h =================================================================== --- ruby_1_9_2/include/ruby/ruby.h (revision 27685) +++ ruby_1_9_2/include/ruby/ruby.h (revision 27686) @@ -1078,7 +1078,7 @@ /* __builtin_constant_p and statement expression is available * since gcc-2.7.2.3 at least. */ #define rb_intern(str) \ - (__builtin_constant_p(str) ? + (__builtin_constant_p(str) ? \ __extension__ (CONST_ID_CACHE((ID), str)) : \ rb_intern(str)) #define rb_intern_const(str) \ Index: ruby_1_9_2/ChangeLog =================================================================== --- ruby_1_9_2/ChangeLog (revision 27685) +++ ruby_1_9_2/ChangeLog (revision 27686) @@ -1,3 +1,7 @@ +Sun May 9 05:44:59 2010 Kazuhiro NISHIYAMA <zn@m...> + + * include/ruby/ruby.h (rb_intern): fix compile error. + Sun May 9 02:37:33 2010 URABE Shyouhei <shyouhei@r...> * io.c (nogvl_copy_stream_sendfile): mixed decls not allowed. -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/