* parse.y: inline must be static (for mswin).

fixed build error introduced at r45426.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45429 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2014-03-26 05:58:41 +00:00
Родитель b9ea135950
Коммит e70b61d010
2 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Wed Mar 26 14:57:35 2014 NAKAMURA Usaku <usa@ruby-lang.org>
* parse.y: inline must be static (for mswin).
fixed build error introduced at r45426.
Wed Mar 26 14:33:00 2014 Narihiro Nakamura <authornari@gmail.com>
* internal.h (USE_SYMBOL_GC): enable Symbol GC by default (USE_SYMBOL_GC == 1).

Просмотреть файл

@ -10723,7 +10723,7 @@ lookup_id_str(ID id, st_data_t *data)
return FALSE;
}
inline ID
ID
rb_sym2id(VALUE x)
{
if (STATIC_SYM_P(x)) {
@ -10734,7 +10734,7 @@ rb_sym2id(VALUE x)
}
}
inline ID
ID
rb_sym2id_without_pindown(VALUE x)
{
if (STATIC_SYM_P(x)) {
@ -10745,7 +10745,7 @@ rb_sym2id_without_pindown(VALUE x)
}
}
inline VALUE
VALUE
rb_id2sym(ID x)
{
if (!ID_DYNAMIC_SYM_P(x)) {