| 181 | |
| 182 | template <typename Value, typename Key, typename GetKey, typename Hash, typename Equals, typename Allocator> |
| 183 | void FlatHashTable<Value, Key, GetKey, Hash, Equals, Allocator>::Bucket::setEmpty() { |
| 184 | if (auto s = valuePtr()) |
| 185 | s->~Value(); |
| 186 | this->hash = EmptyHashValue; |
| 187 | } |
| 188 | |
| 189 | template <typename Value, typename Key, typename GetKey, typename Hash, typename Equals, typename Allocator> |
| 190 | void FlatHashTable<Value, Key, GetKey, Hash, Equals, Allocator>::Bucket::setEnd() { |