summaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-27 05:52:43 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-27 05:52:43 +0000
commit783e2b579ccf9850906e1a4fdbb4f3df37bc21f2 (patch)
treec5951d41bf21e45febb9ee8cb2c207c61d76a5e5 /st.c
parent9aefa90cb31f946180ee19caefd1bb01a579105c (diff)
st.c: remove redundant export declaration
rb_hash_bulk_insert is added to official C API in r63488. It's no longer exported only for MJIT. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63506 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'st.c')
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index 0c52e7a2ef..1a47525707 100644
--- a/st.c
+++ b/st.c
@@ -2283,7 +2283,7 @@ st_insert_generic(st_table *tab, long argc, const VALUE *argv, VALUE hash)
/* Mimics ruby's { foo => bar } syntax. This function is placed here
because it touches table internals and write barriers at once. */
-MJIT_FUNC_EXPORTED void
+void
rb_hash_bulk_insert(long argc, const VALUE *argv, VALUE hash)
{
st_index_t n;