diff options
author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-01-19 03:55:16 +0000 |
---|---|---|
committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-01-19 03:55:16 +0000 |
commit | 5fef2139d4b172199514c98cb0db95e8b61a8fd1 (patch) | |
tree | 26a8486dac490922727b76503a72f63f23b62a80 /st.c | |
parent | e92684dae3489da926083634b1baacc99681a2fb (diff) | |
download | ruby-5fef2139d4b172199514c98cb0db95e8b61a8fd1.tar.gz |
st_hashtype_num marked as static
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61942 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -135,7 +135,7 @@ struct st_table_entry { }; #define type_numhash st_hashtype_num -const struct st_hash_type st_hashtype_num = { +static const struct st_hash_type st_hashtype_num = { st_numcmp, st_numhash, }; |