summaryrefslogtreecommitdiffstats
path: root/src/qhpxmlwriter.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-03-23 18:44:37 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-03-23 18:44:37 (GMT)
commit5d0281a264e33ec3477bd7f6a9dcef79a6ef8eeb (patch)
treeab08dcf78d2df5bd15b3ca3887e13fa7e1fa17a2 /src/qhpxmlwriter.cpp
parent38e9ec69c2c2738cd4ca238630cab24cde1a9200 (diff)
downloadDoxygen-5d0281a264e33ec3477bd7f6a9dcef79a6ef8eeb.zip
Doxygen-5d0281a264e33ec3477bd7f6a9dcef79a6ef8eeb.tar.gz
Doxygen-5d0281a264e33ec3477bd7f6a9dcef79a6ef8eeb.tar.bz2
Refactoring: replace QGString by std::ostringstream
Diffstat (limited to 'src/qhpxmlwriter.cpp')
-rw-r--r--src/qhpxmlwriter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qhpxmlwriter.cpp b/src/qhpxmlwriter.cpp
index 51058f4..f495aaa 100644
--- a/src/qhpxmlwriter.cpp
+++ b/src/qhpxmlwriter.cpp
@@ -18,7 +18,8 @@
#include "util.h"
QhpXmlWriter::QhpXmlWriter()
- : m_indentLevel(0), m_curLineIndented(false), m_compress(false)
+ : m_backend(std::ios_base::ate), m_indentLevel(0),
+ m_curLineIndented(false), m_compress(false)
{
}