Skip to content

Commit

Permalink
st.c (st_add_direct_with_hash): make it "static inline"
Browse files Browse the repository at this point in the history
It was originally static inline, but seemed to be accidentally published
at 8f675cd.
  • Loading branch information
mame committed Sep 22, 2019
1 parent 28eefb3 commit 2272efa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion st.c
Expand Up @@ -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)
{
Expand Down

0 comments on commit 2272efa

Please sign in to comment.