remove assert

This commit is contained in:
Matthew 2025-09-02 02:48:38 +10:00
parent 45a9b539ff
commit ad1b167e2b

1
util.d
View File

@ -348,7 +348,6 @@ struct HashTable(K, V)
Result!(V) opIndex(K key)
{
P* pair = Search(&this, key);
assert(pair != null, "HashTable key index failure: Result must be present");
Result!(V) result = { ok: false };
if (pair != null)