summaryrefslogtreecommitdiffstats
path: root/src/ftvhelp.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/ftvhelp.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/ftvhelp.cpp')
-rw-r--r--src/ftvhelp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ftvhelp.cpp b/src/ftvhelp.cpp
index c0ea2bd..5a5d020 100644
--- a/src/ftvhelp.cpp
+++ b/src/ftvhelp.cpp
@@ -890,7 +890,7 @@ static void generateBriefDoc(FTextStream &t,Definition *def)
def,0,brief,FALSE,FALSE,0,TRUE,TRUE);
QCString relPath = relativePathToRoot(def->getOutputFileBase());
HtmlCodeGenerator htmlGen(t,relPath);
- HtmlDocVisitor *visitor = new HtmlDocVisitor(t,htmlGen,def,0);
+ HtmlDocVisitor *visitor = new HtmlDocVisitor(t,htmlGen,def);
root->accept(visitor);
delete visitor;
delete root;