summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-06-04 16:26:43 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-06-04 17:00:52 +0900
commit33ca2d386bee1cb4bc8e488cd9ad67df5f50f457 (patch)
treeb0eb5f6e764395cb35d52dc55045dc98e5e7c473
parent2b7454eb922ccbda065affc92e2e94c7c28b809f (diff)
Removed no longer used constants [Bug #16934]
`RESERVED_HASH_VAL` and `RESERVED_HASH_SUBSTITUTION_VAL` have not been used directly in hash.c since 72825c35b0d8.
-rw-r--r--st.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/st.c b/st.c
index 6e303f2a3b..c11535ef97 100644
--- a/st.c
+++ b/st.c
@@ -313,9 +313,6 @@ static const struct st_features features[] = {
#define RESERVED_HASH_VAL (~(st_hash_t) 0)
#define RESERVED_HASH_SUBSTITUTION_VAL ((st_hash_t) 0)
-const st_hash_t st_reserved_hash_val = RESERVED_HASH_VAL;
-const st_hash_t st_reserved_hash_substitution_val = RESERVED_HASH_SUBSTITUTION_VAL;
-
/* Return hash value of KEY for table TAB. */
static inline st_hash_t
do_hash(st_data_t key, st_table *tab)