* include/ruby/ruby.h (rb_intern): fix compile error.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27686 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2010-05-08 20:50:22 +00:00
parent 93121d99c9
commit 15a70cf46a
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sun May 9 05:44:59 2010 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* include/ruby/ruby.h (rb_intern): fix compile error.
Sun May 9 02:37:33 2010 URABE Shyouhei <shyouhei@ruby-lang.org> Sun May 9 02:37:33 2010 URABE Shyouhei <shyouhei@ruby-lang.org>
* io.c (nogvl_copy_stream_sendfile): mixed decls not allowed. * io.c (nogvl_copy_stream_sendfile): mixed decls not allowed.

View file

@ -1078,7 +1078,7 @@ VALUE rb_id2str(ID);
/* __builtin_constant_p and statement expression is available /* __builtin_constant_p and statement expression is available
* since gcc-2.7.2.3 at least. */ * since gcc-2.7.2.3 at least. */
#define rb_intern(str) \ #define rb_intern(str) \
(__builtin_constant_p(str) ? (__builtin_constant_p(str) ? \
__extension__ (CONST_ID_CACHE((ID), str)) : \ __extension__ (CONST_ID_CACHE((ID), str)) : \
rb_intern(str)) rb_intern(str))
#define rb_intern_const(str) \ #define rb_intern_const(str) \