compile error fix

This commit is contained in:
Edward R. Gonzalez 2024-02-14 02:46:08 -05:00
parent 9b959ef869
commit 9cc0855c03

View File

@ -97,7 +97,7 @@ hashtable_grow :: proc( ht : ^ HashTable( $ Type ) ) -> AllocatorError {
return rehash( ht, new_num )
}
hashtable_rehash :: proc ( ht : ^ HashTabe( $ Type ), new_num : i64 ) -> AllocatorError
hashtable_rehash :: proc ( ht : ^ HashTable( $ Type ), new_num : i64 ) -> AllocatorError
{
last_added_index : i64