diff options
Diffstat (limited to 'core/fxcrt/xml/cfx_saxcontext.h')
-rw-r--r-- | core/fxcrt/xml/cfx_saxcontext.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/core/fxcrt/xml/cfx_saxcontext.h b/core/fxcrt/xml/cfx_saxcontext.h index fcc889f7a3..7afebed98d 100644 --- a/core/fxcrt/xml/cfx_saxcontext.h +++ b/core/fxcrt/xml/cfx_saxcontext.h @@ -7,18 +7,15 @@ #ifndef CORE_FXCRT_XML_CFX_SAXCONTEXT_H_ #define CORE_FXCRT_XML_CFX_SAXCONTEXT_H_ -#include <sstream> - #include "core/fxcrt/fx_basic.h" #include "core/fxcrt/fx_string.h" #include "core/fxcrt/xml/cfx_saxreader.h" class CFX_SAXContext { public: - CFX_SAXContext(); - ~CFX_SAXContext(); + CFX_SAXContext() : m_eNode(CFX_SAXItem::Type::Unknown) {} - std::ostringstream m_TextBuf; + CFX_ByteTextBuf m_TextBuf; CFX_ByteString m_bsTagName; CFX_SAXItem::Type m_eNode; }; |