Fix problem for HP Native compiler which does not allow 'deletes' on void *.

Judson ok'd the fix
This commit is contained in:
jdunn%netscape.com 1999-08-19 21:42:13 +00:00
Родитель a16b5c49c6
Коммит 3a6cd8fce9
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -57,7 +57,7 @@ PRBool DeleteAdjacencyEntry(nsHashKey *aKey, void *aData, void* closure) {
NS_RELEASE(vertex);
edges->RemoveElementAt(0);
}
delete entry->data;
delete (nsVoidArray *)entry->data;
delete entry;
return PR_TRUE;
};