Bug 1057912 - Privatize most of PLDHashTable's fields. r=roc.

This commit is contained in:
Nicholas Nethercote
2014-08-25 16:56:33 -07:00
parent 2e9bf83165
commit c9cbbdc34d
26 changed files with 452 additions and 343 deletions

View File

@@ -73,8 +73,8 @@ static const PLDHashTableOps UnicodeToEntityOps = {
nullptr,
};
static PLDHashTable gEntityToUnicode = { 0 };
static PLDHashTable gUnicodeToEntity = { 0 };
static PLDHashTable gEntityToUnicode;
static PLDHashTable gUnicodeToEntity;
static nsrefcnt gTableRefCnt = 0;
#define HTML_ENTITY(_name, _value) { #_name, _value },