Fixed syntax error

git-svn-id: svn://10.0.0.236/trunk@58639 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
waldemar%netscape.com
2000-01-25 22:56:14 +00:00
parent f2a5b81c24
commit a92dbd7cc6
2 changed files with 2 additions and 2 deletions

View File

@@ -185,7 +185,7 @@ namespace JavaScript {
template<class Data, class Key, class H>
HashTable<Data, Key, H>::~HashTable()
{
GenericHashEntry *be = bucketsEnd;
GenericHashEntry **be = bucketsEnd;
for (GenericHashEntry **b = buckets; b != be; b++) {
Entry *e = static_cast<Entry *>(*b);
while (e) {

View File

@@ -185,7 +185,7 @@ namespace JavaScript {
template<class Data, class Key, class H>
HashTable<Data, Key, H>::~HashTable()
{
GenericHashEntry *be = bucketsEnd;
GenericHashEntry **be = bucketsEnd;
for (GenericHashEntry **b = buckets; b != be; b++) {
Entry *e = static_cast<Entry *>(*b);
while (e) {