diff options
author | adeshkp <adeshkp@users.noreply.github.com> | 2018-08-04 11:17:54 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-08-06 11:10:24 +0200 |
commit | fc0477a98e352cef8ffba388fbd2a44e101f7420 (patch) | |
tree | 5078cdb6b909e3787dc46c126ee9a392fce5eb2f /parser/html/nsHtml5AtomTable.cpp | |
parent | 36d06b9e75561f9d6ff518e67aaa29f9c9d1fd10 (diff) | |
download | UXP-fc0477a98e352cef8ffba388fbd2a44e101f7420.tar UXP-fc0477a98e352cef8ffba388fbd2a44e101f7420.tar.gz UXP-fc0477a98e352cef8ffba388fbd2a44e101f7420.tar.lz UXP-fc0477a98e352cef8ffba388fbd2a44e101f7420.tar.xz UXP-fc0477a98e352cef8ffba388fbd2a44e101f7420.zip |
Fix constructor in nsHtml5AtomTable.cpp
Follow up to 2bc00ef to fix build bustage
Diffstat (limited to 'parser/html/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 d9c18485d..ae35791f3 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* |