diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-03-02 14:57:59 -0800 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-03 02:02:48 +0000 |
commit | d4db58fa238a3e6f80fc87bc7fe539cd9f54aa7f (patch) | |
tree | e80061f3a64fae1adb210eff79da7a440ad0fc2d /xfa/fxfa/parser/cxfa_document.cpp | |
parent | 2326e9cdf4467d0a65471a64d3e66268810f62d8 (diff) | |
download | pdfium-d4db58fa238a3e6f80fc87bc7fe539cd9f54aa7f.tar.xz |
Remove CXFA_NodeStack
Also replace CXFA_NodeSet with underlying type.
Change-Id: Iba38ef67bab5d7b23a0bb2b8272a1effa1015c9c
Reviewed-on: https://pdfium-review.googlesource.com/2905
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_document.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_document.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_document.cpp b/xfa/fxfa/parser/cxfa_document.cpp index adb8eb2e0b..b7d429aa4a 100644 --- a/xfa/fxfa/parser/cxfa_document.cpp +++ b/xfa/fxfa/parser/cxfa_document.cpp @@ -361,7 +361,7 @@ void CXFA_Document::DoProtoMerge() { return; std::map<uint32_t, CXFA_Node*> mIDMap; - CXFA_NodeSet sUseNodes; + std::unordered_set<CXFA_Node*> sUseNodes; CXFA_NodeIterator sIterator(pTemplateRoot); for (CXFA_Node* pNode = sIterator.GetCurrent(); pNode; pNode = sIterator.MoveToNext()) { |