summaryrefslogtreecommitdiffstats
path: root/src/qhpxmlwriter.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-03-28 19:57:33 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-03-28 19:57:33 (GMT)
commit42bac34be2b7b4beb5ee468926ed0bf0e7528fd2 (patch)
tree342ff1055c25dfe934876c5bef19e2c4304fc640 /src/qhpxmlwriter.h
parentc48639744a6fa118b9851b307107994ba93ce4c8 (diff)
downloadDoxygen-42bac34be2b7b4beb5ee468926ed0bf0e7528fd2.zip
Doxygen-42bac34be2b7b4beb5ee468926ed0bf0e7528fd2.tar.gz
Doxygen-42bac34be2b7b4beb5ee468926ed0bf0e7528fd2.tar.bz2
Fixed compilation problem when enableing sqlite3
Diffstat (limited to 'src/qhpxmlwriter.h')
-rw-r--r--src/qhpxmlwriter.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/qhpxmlwriter.h b/src/qhpxmlwriter.h
index bc927d4..6b3ccb9 100644
--- a/src/qhpxmlwriter.h
+++ b/src/qhpxmlwriter.h
@@ -18,8 +18,7 @@
#define QHPXMLWRITER_H
#include <sstream>
-
-class TextStream;
+#include "textstream.h"
class QhpXmlWriter
{
@@ -52,7 +51,7 @@ class QhpXmlWriter
char const * const * attributes = 0);
void closePure(char const * elementName);
- std::ostringstream m_backend;
+ TextStream m_backend;
int m_indentLevel;
bool m_curLineIndented;
bool m_compress;