summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Wicking <paul.wicking@qt.io>2023-03-10 09:52:15 +0100
committerPaul Wicking <paul.wicking@qt.io>2023-03-10 18:09:17 +0100
commit5f3f87ba0f9a000ee2690d44afe053538c2f78d8 (patch)
treecc480b72849c53f16bd6ff307286819ed8513d2a
parented483f150bf0f41d1bd1782afa80619b7e0246b9 (diff)
downloadqttools-5f3f87ba0f9a000ee2690d44afe053538c2f78d8.tar.gz
QDoc: Don't call CodeParser::terminateParser from CppCodeParser
Drop the call to CodeParser::terminateParser() from CppCodeParser::terminateParser, as the former does _nothing_. Task-number: QTBUG-111686 Change-Id: I900aede323e4249be339227fc0f70d1511d998a2 Reviewed-by: Luca Di Sera <luca.disera@qt.io>
-rw-r--r--src/qdoc/cppcodeparser.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/qdoc/cppcodeparser.cpp b/src/qdoc/cppcodeparser.cpp
index 31130f186..db339537f 100644
--- a/src/qdoc/cppcodeparser.cpp
+++ b/src/qdoc/cppcodeparser.cpp
@@ -118,14 +118,12 @@ void CppCodeParser::initializeParser()
}
/*!
- Clear the exclude directories and exclude files sets, and call
- the same function in the base class.
+ Clear the exclude directories and exclude files sets.
*/
void CppCodeParser::terminateParser()
{
m_excludeDirs.clear();
m_excludeFiles.clear();
- CodeParser::terminateParser();
}
/*!