summaryrefslogtreecommitdiffstats
path: root/src/perlmodgen.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-09-13 16:01:21 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-09-13 16:01:21 (GMT)
commit99f948c038b763028fcb95ef2a65fdbc1d5f9520 (patch)
tree463b89eccee1f90603ab4ee991ab18ef736f8166 /src/perlmodgen.cpp
parentaca45fd514cadc56ac277bd54f49604708ebbb5d (diff)
downloadDoxygen-99f948c038b763028fcb95ef2a65fdbc1d5f9520.zip
Doxygen-99f948c038b763028fcb95ef2a65fdbc1d5f9520.tar.gz
Doxygen-99f948c038b763028fcb95ef2a65fdbc1d5f9520.tar.bz2
Fixing coverity messages
Note: especially latexdocvisitor (dead code that should not be dead code).
Diffstat (limited to 'src/perlmodgen.cpp')
-rw-r--r--src/perlmodgen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/perlmodgen.cpp b/src/perlmodgen.cpp
index f805383..5b4b6ea 100644
--- a/src/perlmodgen.cpp
+++ b/src/perlmodgen.cpp
@@ -428,7 +428,7 @@ private:
};
PerlModDocVisitor::PerlModDocVisitor(PerlModOutput &output)
- : DocVisitor(DocVisitor_Other), m_output(output), m_textmode(false)
+ : DocVisitor(DocVisitor_Other), m_output(output), m_textmode(false), m_textblockstart(FALSE)
{
m_output.openList("doc");
}