summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2019-09-22 16:35:50 +0900
committerYusuke Endoh <mame@ruby-lang.org>2019-09-22 16:39:47 +0900
commit2272efa4632a845ead37377a22ad9e24b45ebf27 (patch)
tree754c21fd84368168694948ba17a1620f4d8f46a4
parent28eefb33c8d27e5711319873d065e5414d7ffe25 (diff)
st.c (st_add_direct_with_hash): make it "static inline"
It was originally static inline, but seemed to be accidentally published at 8f675cdd00e2c5b5a0f143f5e508dbbafdb20ccd.
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index 618143f29d..891fe8d519 100644
--- a/st.c
+++ b/st.c
@@ -1197,7 +1197,7 @@ st_insert(st_table *tab, st_data_t key, st_data_t value)
/* Insert (KEY, VALUE, HASH) into table TAB. The table should not have
entry with KEY before the insertion. */
-void
+static inline void
st_add_direct_with_hash(st_table *tab,
st_data_t key, st_data_t value, st_hash_t hash)
{