diff options
author | ahoogol <ahoogol@gmail.com> | 2017-06-28 12:00:07 (GMT) |
---|---|---|
committer | ahoogol <ahoogol@gmail.com> | 2017-06-28 12:00:07 (GMT) |
commit | 3977359bd3fb5527a237c2c0cdb61407f2d85464 (patch) | |
tree | e085f1a70957a52f2721c3020be441eed072181d /src/htmldocvisitor.cpp | |
parent | 2a539e12679a244389c781f6146d7f6bd9c82048 (diff) | |
download | Doxygen-3977359bd3fb5527a237c2c0cdb61407f2d85464.zip Doxygen-3977359bd3fb5527a237c2c0cdb61407f2d85464.tar.gz Doxygen-3977359bd3fb5527a237c2c0cdb61407f2d85464.tar.bz2 |
Fixed one remained compile error in clang
Diffstat (limited to 'src/htmldocvisitor.cpp')
-rw-r--r-- | src/htmldocvisitor.cpp | 2 |
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()) { |