Skip to content

Commit a18bd3b

Browse files
name the field
1 parent 0cf83d9 commit a18bd3b

File tree

1 file changed

+1
-1
lines changed
  • libc/src/__support/HashTable

1 file changed

+1
-1
lines changed

libc/src/__support/HashTable/table.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ struct HashTable {
333333
return {0, full_capacity() - available_slots,
334334
Group::load_aligned(&control(0)).occupied(), *this};
335335
}
336-
iterator end() const { return {0, 0, {{0}}, *this}; }
336+
iterator end() const { return {0, 0, {BitMask{0}}, *this}; }
337337

338338
LIBC_INLINE ENTRY *find(const char *key) {
339339
uint64_t primary = oneshot_hash(key);

0 commit comments

Comments
 (0)