summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-26 05:58:41 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-26 05:58:41 +0000
commite70b61d0104da0d4add791a7f2074fdff9511de0 (patch)
treee3224446d1bb05bd239b583894093e8f16b0e8a0 /parse.y
parentb9ea13595003eebdf18db97b8177285f215ce94f (diff)
* 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
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/parse.y b/parse.y
index 5cca05e324..f545af90e5 100644
--- a/parse.y
+++ b/parse.y
@@ -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)) {