diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2021-01-08 09:38:21 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2021-01-08 09:38:21 (GMT) |
commit | dabed1c3e46157c6690179c2aadbea5055bfef54 (patch) | |
tree | 156dec988bd17adc047b2e65fea124abb0ffca86 /src/doxygen.cpp | |
parent | d3edd3562661172d4d338667acece1963f6e30a4 (diff) | |
download | Doxygen-dabed1c3e46157c6690179c2aadbea5055bfef54.zip Doxygen-dabed1c3e46157c6690179c2aadbea5055bfef54.tar.gz Doxygen-dabed1c3e46157c6690179c2aadbea5055bfef54.tar.bz2 |
Fix coverity dead-code warning
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index dded2e7..c9da485 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -5616,7 +5616,7 @@ static void addMemberFunction(const Entry *root, Debug::print(Debug::FindMembers,0, "3. member definition found, " "scope needed='%s' scope='%s' args='%s' fileName=%s\n", - qPrint(scopeName),cd ? qPrint(cd->name()) : "<none>", + qPrint(scopeName),qPrint(cd->name()), qPrint(md->argsString()), qPrint(root->fileName)); //printf("Member %s (member scopeName=%s) (this scopeName=%s) isEnumValue()=%d\n", |