diff options
author | adeshkp <adeshkp@users.noreply.github.com> | 2018-08-04 11:17:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-04 11:17:54 +0000 |
commit | a1f07930e7d334ca37b7b3e4717b735380604ab5 (patch) | |
tree | af3abeb615ff855c2bd4f8eb5fa7d8081a5da14a /parser | |
parent | 7b8d9df30db343a7d548475b9f1d90c0dca7ccdf (diff) | |
download | uxp-a1f07930e7d334ca37b7b3e4717b735380604ab5.tar.gz |
Fix constructor in nsHtml5AtomTable.cpp
Follow up to 2bc00ef to fix build bustage
Diffstat (limited to 'parser')
-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* |