diff --git a/src/libraries/kutil/include/kutil/map.h b/src/libraries/kutil/include/kutil/map.h index 9536e61..4ea1ddf 100644 --- a/src/libraries/kutil/include/kutil/map.h +++ b/src/libraries/kutil/include/kutil/map.h @@ -45,20 +45,6 @@ struct hash_node inline uint64_t hash() const { return h; } }; -template -struct hash_node -{ - uint64_t key; - V val; - - hash_node(hash_node &&o) : key(std::move(o.key)), val(std::move(o.val)) {} - hash_node(uint64_t h, uint64_t &&k, V &&v) : key(std::move(k)), val(std::move(v)) {} - ~hash_node() {} - - inline uint64_t & hash() { return key; } - inline uint64_t hash() const { return key; } -}; - /// Base class for hash maps template class base_map