mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* include/ruby/ruby.h (rb_special_const_p): fixed typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24889 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8d0bcdb016
commit
df3ae4e2b5
1 changed files with 1 additions and 1 deletions
|
@ -1270,7 +1270,7 @@ rb_type(VALUE obj)
|
|||
|
||||
#ifdef __GNUC__
|
||||
#define rb_special_const_p(obj) \
|
||||
__extension__ ({VALUE special_const_obj = (obj); (int)(SPECIAL_CONST_P(obj) ? Qtrue : Qfalse);})
|
||||
__extension__ ({VALUE special_const_obj = (obj); (int)(SPECIAL_CONST_P(special_const_obj) ? Qtrue : Qfalse);})
|
||||
#else
|
||||
static inline int
|
||||
rb_special_const_p(VALUE obj)
|
||||
|
|
Loading…
Reference in a new issue