зеркало из https://github.com/mozilla/pjs.git
Bug 714169 - Fix warning in HashTable.h by using |continue;| instead of |;|. r=jwalden
--HG-- extra : rebase_source : 176f652ee0e2c23b2c995b51814e4e1fd1ae0149
This commit is contained in:
Родитель
2e7c75854e
Коммит
64e5e4be68
|
@ -201,7 +201,8 @@ class HashTable : private AllocPolicy
|
|||
|
||||
void popFront() {
|
||||
JS_ASSERT(!empty());
|
||||
while (++cur != end && !cur->isLive());
|
||||
while (++cur != end && !cur->isLive())
|
||||
continue;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче