diff options
author | Lei Zhang <thestig@chromium.org> | 2018-09-20 01:21:05 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-09-20 01:21:05 +0000 |
commit | 109aa6d0f673aee11a398aae478fb758fc73a33f (patch) | |
tree | 0ec791dcb33395953b5afb8b667b0a1823daa789 /core/fxcrt/xml | |
parent | f3cc72fd2b6910d4d7437f71efce23b501c5b526 (diff) | |
download | pdfium-109aa6d0f673aee11a398aae478fb758fc73a33f.tar.xz |
Remove more unneeded STL #includes from headers.
Remove some variables named "string" to avoid false positives from the
linter.
Change-Id: I00a53e6970451fd0cea8ab2f8178183650ca00d2
Reviewed-on: https://pdfium-review.googlesource.com/42810
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'core/fxcrt/xml')
-rw-r--r-- | core/fxcrt/xml/cfx_xmlparser.cpp | 1 | ||||
-rw-r--r-- | core/fxcrt/xml/cfx_xmlparser.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/xml/cfx_xmlparser.cpp b/core/fxcrt/xml/cfx_xmlparser.cpp index d66d980f38..97ba90d0fe 100644 --- a/core/fxcrt/xml/cfx_xmlparser.cpp +++ b/core/fxcrt/xml/cfx_xmlparser.cpp @@ -9,6 +9,7 @@ #include <algorithm> #include <cwctype> #include <iterator> +#include <stack> #include <utility> #include "core/fxcrt/cfx_seekablestreamproxy.h" diff --git a/core/fxcrt/xml/cfx_xmlparser.h b/core/fxcrt/xml/cfx_xmlparser.h index 4d9184de3e..466968054b 100644 --- a/core/fxcrt/xml/cfx_xmlparser.h +++ b/core/fxcrt/xml/cfx_xmlparser.h @@ -8,7 +8,6 @@ #define CORE_FXCRT_XML_CFX_XMLPARSER_H_ #include <memory> -#include <stack> #include <vector> #include "core/fxcrt/fx_string.h" |