summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorahoogol <ahoogol@gmail.com>2017-06-28 12:00:07 (GMT)
committerahoogol <ahoogol@gmail.com>2017-06-28 12:00:07 (GMT)
commit3977359bd3fb5527a237c2c0cdb61407f2d85464 (patch)
treee085f1a70957a52f2721c3020be441eed072181d
parent2a539e12679a244389c781f6146d7f6bd9c82048 (diff)
downloadDoxygen-3977359bd3fb5527a237c2c0cdb61407f2d85464.zip
Doxygen-3977359bd3fb5527a237c2c0cdb61407f2d85464.tar.gz
Doxygen-3977359bd3fb5527a237c2c0cdb61407f2d85464.tar.bz2
Fixed one remained compile error in clang
-rw-r--r--src/htmldocvisitor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htmldocvisitor.cpp b/src/htmldocvisitor.cpp
index ab371fe..7404a4d 100644
--- a/src/htmldocvisitor.cpp
+++ b/src/htmldocvisitor.cpp
@@ -1024,7 +1024,7 @@ void HtmlDocVisitor::visitPre(DocPara *p)
// if the first element of a paragraph is something that should be outside of
// the paragraph (<ul>,<dl>,<table>,..) then that will already started the
// paragraph and we don't need to do it here
- auto paragraphAlreadyStarted = false;
+ bool paragraphAlreadyStarted = false;
uint nodeIndex = 0;
if (p && nodeIndex<p->children().count())
{