diff --git a/core/hash_table.h b/core/hash_table.h index e72acd6a..9792af30 100644 --- a/core/hash_table.h +++ b/core/hash_table.h @@ -135,19 +135,6 @@ public: } }; -template -class ht_ref_cnt -{ -public: - Value* new_elmt(Value* v) { - inc_ref(v); - return v; - } - void dispose(Value* v) { - dec_ref(v); - } -}; - template, class ElmtCompare = less >