summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-05-20 18:48:10 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-05-20 18:48:10 (GMT)
commit7944b8e632a063032452e7fe50074ec7eba3fe2e (patch)
tree8af67841b1c97ecddba8abc909711b1b1d7cad8f
parent9e4de70cd8ad9fa7a2cc6ec61382a60c30a4f5dd (diff)
downloadDoxygen-7944b8e632a063032452e7fe50074ec7eba3fe2e.zip
Doxygen-7944b8e632a063032452e7fe50074ec7eba3fe2e.tar.gz
Doxygen-7944b8e632a063032452e7fe50074ec7eba3fe2e.tar.bz2
issue #8560: Regression: In Python/xml output, refid and qualified name of base compound not resolved under certain conditions
-rw-r--r--src/doxygen.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 51fcd16..d589555 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -1671,6 +1671,7 @@ static void buildNamespaceList(const Entry *root)
nd->setName(fullName); // change name to match docs
nd->addSectionsToDefinition(root->anchors);
nd->setBriefDescription(root->brief,root->briefFile,root->briefLine);
+ nd->setArtificial(FALSE); // found namespace explicitly, so cannot be artificial
if (nd->getLanguage()==SrcLangExt_Unknown)
{
nd->setLanguage(root->lang);