remove HashTable routines (we're only using HashLists)

This commit is contained in:
alecf%netscape.com 1999-06-16 00:24:31 +00:00
Родитель 7214b158cc
Коммит 82c5e8202e
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -112,7 +112,7 @@ toprime (uint32 size)
return primes[s-1]; return primes[s-1];
} }
#if 0
/* Create a new, empty hash table object. /* Create a new, empty hash table object.
*/ */
PUBLIC XP_HashTable PUBLIC XP_HashTable
@ -341,6 +341,8 @@ XP_MapRemhash (XP_HashTable table, XP_HashTableMapper mapper, void *closure)
xp_maphash (table, mapper, closure, TRUE); xp_maphash (table, mapper, closure, TRUE);
} }
#endif /* if 0 */
/* create a hash list, which isn't really a table. /* create a hash list, which isn't really a table.