diff options
author | Paul Wicking <paul.wicking@qt.io> | 2023-03-10 09:29:18 +0100 |
---|---|---|
committer | Paul Wicking <paul.wicking@qt.io> | 2023-03-10 18:09:17 +0100 |
commit | cee8ac403286548961f52f8cef8abfb14060c707 (patch) | |
tree | 6daf6ba4e86178bc683edd71edb71bb4b36f3d7f /src/qdoc/cppcodeparser.cpp | |
parent | 4546506877d9e5f78d3c3ff13fc9eff77bc84a4e (diff) | |
download | qttools-cee8ac403286548961f52f8cef8abfb14060c707.tar.gz |
QDoc: Remove CodeParser::initializeParser()
Due to recent changes, CodeParser::initializeParser() is a noop.
* Derived classes implement overrides, so make it pure virtual in
CodeParser.
* Drop the call from the initializeParser methods of CppCodeParser
and QmlCodeParser.
Task-number: QTBUG-111686
Change-Id: Ia018132d9401b9189e3a0d6346606488fd163edd
Reviewed-by: Luca Di Sera <luca.disera@qt.io>
Diffstat (limited to 'src/qdoc/cppcodeparser.cpp')
-rw-r--r-- | src/qdoc/cppcodeparser.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/qdoc/cppcodeparser.cpp b/src/qdoc/cppcodeparser.cpp index 97982a782..81800ce32 100644 --- a/src/qdoc/cppcodeparser.cpp +++ b/src/qdoc/cppcodeparser.cpp @@ -70,8 +70,6 @@ CppCodeParser::CppCodeParser() */ void CppCodeParser::initializeParser() { - CodeParser::initializeParser(); - /* All these can appear in a C++ namespace. Don't add anything that can't be in a C++ namespace. |