Bug 1170934 (part 2) - Fix the comment for PL_DHashTableRemove(). r=froydnj.

--HG--
extra : rebase_source : 85258e2402a9f0b8fbeefd76c4e405cfb8eb887f
This commit is contained in:
Nicholas Nethercote 2015-06-03 17:05:12 -07:00
Родитель cc64c96ae6
Коммит 2fba2d028e
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -495,9 +495,7 @@ PL_DHashTableAdd(PLDHashTable* aTable, const void* aKey);
*
* PL_DHashTableRemove(table, key);
*
* If key's entry is found, it is cleared (via table->mOps->clearEntry) and
* the entry is marked so that PL_DHASH_ENTRY_IS_FREE(entry). This operation
* returns null unconditionally; you should ignore its return value.
* If key's entry is found, it is cleared (via table->mOps->clearEntry).
*/
void PL_DHASH_FASTCALL
PL_DHashTableRemove(PLDHashTable* aTable, const void* aKey);