diff --git a/libc/src/__support/HashTable/table.h b/libc/src/__support/HashTable/table.h index 9b2f3beea9965..288829b1cac97 100644 --- a/libc/src/__support/HashTable/table.h +++ b/libc/src/__support/HashTable/table.h @@ -333,7 +333,7 @@ struct HashTable { return {0, full_capacity() - available_slots, Group::load_aligned(&control(0)).occupied(), *this}; } - iterator end() const { return {0, 0, {{0}}, *this}; } + iterator end() const { return {0, 0, {BitMask{0}}, *this}; } LIBC_INLINE ENTRY *find(const char *key) { uint64_t primary = oneshot_hash(key);