This commit is contained in:
brendan%mozilla.org 2000-08-24 03:14:17 +00:00
Родитель 280caaeaef
Коммит f80865ab42
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -207,7 +207,7 @@ JS_DHashTableFinish(JSDHashTable *table)
#define MARK_ENTRY_FREE(entry) ((entry)->keyHash = 0)
#define MARK_ENTRY_REMOVED(entry) ((entry)->keyHash = 1)
#define ENTRY_IS_LIVE(entry) ((entry)->keyHash >= 2)
#define ENSURE_LIVE_KEYHASH(hash0) if (hash0 < 2) hash0 -= 2; else
#define ENSURE_LIVE_KEYHASH(hash0) if (hash0 < 2) hash0 -= 2; else (void)0
/* Compute the address of the indexed entry in table. */
#define ADDRESS_ENTRY(table, index) \