diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-09-18 20:13:40 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-09-18 20:13:40 (GMT) |
commit | b5ba77ebd72c7e994a30eda5422dffde730561ec (patch) | |
tree | 488f298f3b33e7e5b8ced572be01375d66b47c23 /src/docparser.h | |
parent | 35fb02903f658f5ca6880b8ad6a5c1e6ac39d64f (diff) | |
download | Doxygen-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/docparser.h')
-rw-r--r-- | src/docparser.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/docparser.h b/src/docparser.h index b80e5e1..f8cc718 100644 --- a/src/docparser.h +++ b/src/docparser.h @@ -983,8 +983,7 @@ class DocParamSect : public CompAccept<DocParamSect>, public DocNode In=1, Out=2, InOut=3, Unspecified=0 }; DocParamSect(DocNode *parent,Type t) - : m_type(t), m_dir(Unspecified), - m_hasInOutSpecifier(FALSE), m_hasTypeSpecifier(FALSE) + : m_type(t), m_hasInOutSpecifier(FALSE), m_hasTypeSpecifier(FALSE) { m_parent = parent; } int parse(const QCString &cmdName,bool xmlContext,Direction d); Kind kind() const { return Kind_ParamSect; } @@ -995,7 +994,6 @@ class DocParamSect : public CompAccept<DocParamSect>, public DocNode private: Type m_type; - Direction m_dir; bool m_hasInOutSpecifier; bool m_hasTypeSpecifier; }; @@ -1189,7 +1187,6 @@ class DocHtmlCaption : public CompAccept<DocHtmlCaption>, public DocNode private: HtmlAttribList m_attribs; - bool m_atTop; }; /** Node representing a HTML table row */ |