summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2020-02-27 09:49:24 +0900
committerYusuke Endoh <mame@ruby-lang.org>2020-02-27 09:49:24 +0900
commit1d81baf3c1507cbe5e75b08a833761122e68444b (patch)
tree09dd57fd52fd3e14048739ec51facb88385693ac
parent6b30638bdb729c73a05190587123e43e2ffd69f3 (diff)
st.c: remove variables that are no longer used
to suppress a warning "variable 'check' set but not used"
-rw-r--r--st.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/st.c b/st.c
index 8202b4f695..f0ef65d992 100644
--- a/st.c
+++ b/st.c
@@ -1162,7 +1162,7 @@ st_insert2(st_table *tab, st_data_t key, st_data_t value,
{
st_table_entry *entry;
st_index_t bin;
- st_index_t ind, check;
+ st_index_t ind;
st_hash_t hash_value;
st_index_t bin_ind;
int new_p;
@@ -1188,7 +1188,6 @@ st_insert2(st_table *tab, st_data_t key, st_data_t value,
bin -= ENTRY_BASE;
}
if (new_p) {
- check = tab->rebuilds_num;
key = (*func)(key);
ind = tab->entries_bound++;
entry = &tab->entries[ind];
@@ -1389,7 +1388,6 @@ st_update(st_table *tab, st_data_t key,
st_table_entry *entries;
st_index_t bin_ind;
st_data_t value = 0, old_key;
- st_index_t check;
int retval, existing;
st_hash_t hash = do_hash(key, tab);
@@ -1418,7 +1416,6 @@ st_update(st_table *tab, st_data_t key,
value = entry->record;
}
old_key = key;
- check = tab->rebuilds_num;
retval = (*func)(&key, &value, arg, existing);
switch (retval) {
case ST_CONTINUE: