summaryrefslogtreecommitdiffstats
path: root/src/docbookgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-09-18 20:13:40 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-09-18 20:13:40 (GMT)
commitb5ba77ebd72c7e994a30eda5422dffde730561ec (patch)
tree488f298f3b33e7e5b8ced572be01375d66b47c23 /src/docbookgen.cpp
parent35fb02903f658f5ca6880b8ad6a5c1e6ac39d64f (diff)
downloadDoxygen-b5ba77ebd72c7e994a30eda5422dffde730561ec.zip
Doxygen-b5ba77ebd72c7e994a30eda5422dffde730561ec.tar.gz
Doxygen-b5ba77ebd72c7e994a30eda5422dffde730561ec.tar.bz2
Fixed a number of compiler warnings reported by newer clang compiler
Diffstat (limited to 'src/docbookgen.cpp')
-rw-r--r--src/docbookgen.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/docbookgen.cpp b/src/docbookgen.cpp
index df922b3..f869dfb 100644
--- a/src/docbookgen.cpp
+++ b/src/docbookgen.cpp
@@ -191,8 +191,7 @@ class DocbookCodeGenerator : public CodeOutputInterface
{
public:
DocbookCodeGenerator(FTextStream &t) : m_t(t), m_lineNumber(-1),
- m_insideCodeLine(FALSE), m_normalHLNeedStartTag(TRUE),
- m_insideSpecialHL(FALSE) {}
+ m_insideCodeLine(FALSE), m_insideSpecialHL(FALSE) {}
virtual ~DocbookCodeGenerator() {}
void codify(const char *text)
@@ -291,7 +290,6 @@ class DocbookCodeGenerator : public CodeOutputInterface
bool m_isMemberRef;
int col;
bool m_insideCodeLine;
- bool m_normalHLNeedStartTag;
bool m_insideSpecialHL;
};