diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-08-04 13:43:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-04 13:43:05 +0200 |
commit | 559824514dc95e02fbe81f1786e6ac13ee8e9d55 (patch) | |
tree | af3abeb615ff855c2bd4f8eb5fa7d8081a5da14a | |
parent | 6577d13f01da675718ca5f061914581329c5c7f5 (diff) | |
parent | 2370b6a532182699a279c22d8804d786f932fc81 (diff) | |
download | uxp-559824514dc95e02fbe81f1786e6ac13ee8e9d55.tar.gz |
Merge pull request #694 from adeshkp/patch-10
Fix constructor in nsHtml5AtomTable.cpp
-rw-r--r-- | parser/html/nsHtml5AtomTable.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/parser/html/nsHtml5AtomTable.cpp b/parser/html/nsHtml5AtomTable.cpp index d9c18485d1..ae35791f3f 100644 --- a/parser/html/nsHtml5AtomTable.cpp +++ b/parser/html/nsHtml5AtomTable.cpp @@ -24,6 +24,7 @@ nsHtml5AtomEntry::~nsHtml5AtomEntry() } nsHtml5AtomTable::nsHtml5AtomTable() + : mRecentlyUsedParserAtoms{} { #ifdef DEBUG NS_GetMainThread(getter_AddRefs(mPermittedLookupThread)); @@ -31,11 +32,7 @@ nsHtml5AtomTable::nsHtml5AtomTable() } nsHtml5AtomTable::~nsHtml5AtomTable() - : mRecentlyUsedParserAtoms{} { -#ifdef DEBUG - NS_GetMainThread(getter_AddRefs(mPermittedLookupThread)); -#endif } nsIAtom* |