diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-04-06 12:28:23 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-04-06 12:28:23 -0700 |
commit | 6fcecb529007b65596f0ce30efde571f820df56b (patch) | |
tree | 2e88339638d1cdb974c24638388fb0c5ec613182 /core/include/fxcrt/fx_xml.h | |
parent | 9bf1f76771e04c20cb8a0f1c3d1938bdb965882e (diff) | |
download | pdfium-6fcecb529007b65596f0ce30efde571f820df56b.tar.xz |
Fix IWYU in fxcrt headers.
Confirmed manually that:
g++ --std=c++0x -o /dev/null -I. ... -c fx_xxxxx.h
is now error-free for the files in this directory. Also kill
some ifndef's around inclusion since we know this doesn't
provide benefit with modern compilers.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1064433005
Diffstat (limited to 'core/include/fxcrt/fx_xml.h')
-rw-r--r-- | core/include/fxcrt/fx_xml.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/include/fxcrt/fx_xml.h b/core/include/fxcrt/fx_xml.h index fb46a93591..8fb00158a7 100644 --- a/core/include/fxcrt/fx_xml.h +++ b/core/include/fxcrt/fx_xml.h @@ -6,9 +6,9 @@ #ifndef _FX_XML_H_ #define _FX_XML_H_ -#ifndef _FX_BASIC_H_ + #include "fx_basic.h" -#endif + class CXML_AttrItem : public CFX_Object { public: |