summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/xfa_document.h
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2016-05-12 10:08:06 -0700
committerCommit bot <commit-bot@chromium.org>2016-05-12 10:08:06 -0700
commitaadedf904d6e072e885f6ccd142c5f874833d5c5 (patch)
tree8d44df3c03db12a1745f2c597871aa4b97f4b862 /xfa/fxfa/parser/xfa_document.h
parentfc1136525693c4aad2c803ca14bd25ff4a658f37 (diff)
downloadpdfium-aadedf904d6e072e885f6ccd142c5f874833d5c5.tar.xz
Replace CXFA_PtrSetTemplate with std::unordered_set.
Building a set on top of a map and ignoring the mapped value seems wasteful. Review-Url: https://codereview.chromium.org/1942903003
Diffstat (limited to 'xfa/fxfa/parser/xfa_document.h')
-rw-r--r--xfa/fxfa/parser/xfa_document.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/xfa_document.h b/xfa/fxfa/parser/xfa_document.h
index dc50646868..16428ea781 100644
--- a/xfa/fxfa/parser/xfa_document.h
+++ b/xfa/fxfa/parser/xfa_document.h
@@ -115,7 +115,7 @@ class CXFA_Document {
CScript_LogPseudoModel* m_pScriptLog;
CScript_LayoutPseudoModel* m_pScriptLayout;
CScript_SignaturePseudoModel* m_pScriptSignature;
- CXFA_NodeSet m_rgPurgeNodes;
+ CXFA_NodeSet m_PurgeNodes;
XFA_VERSION m_eCurVersionMode;
uint32_t m_dwDocFlags;
friend class CXFA_SimpleParser;