mirror of
https://github.com/ruby/ruby.git
synced 2025-09-18 10:03:59 +02:00
* io.c (nogvl_copy_stream_sendfile): mixed decls not allowed.
* include/ruby/ruby.h (rb_intern): C90 needs nonempty macro arguments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27684 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d42a249334
commit
93121d99c9
3 changed files with 11 additions and 3 deletions
|
@ -1078,8 +1078,8 @@ VALUE rb_id2str(ID);
|
|||
/* __builtin_constant_p and statement expression is available
|
||||
* since gcc-2.7.2.3 at least. */
|
||||
#define rb_intern(str) \
|
||||
(__builtin_constant_p(str) ? \
|
||||
__extension__ (CONST_ID_CACHE(/**/, str)) : \
|
||||
(__builtin_constant_p(str) ?
|
||||
__extension__ (CONST_ID_CACHE((ID), str)) : \
|
||||
rb_intern(str))
|
||||
#define rb_intern_const(str) \
|
||||
(__builtin_constant_p(str) ? \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue