summaryrefslogtreecommitdiffstats
path: root/src/context.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-10-19 08:18:07 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-10-19 08:18:07 (GMT)
commite847d5dc322740b0097f56fc19311c8c74a44a55 (patch)
treec227b2ee5b7223ba8ee2400b3c9def44773e9803 /src/context.cpp
parentccca51f80ce6a4c380545800f6ea8b5ae27c8724 (diff)
downloadDoxygen-e847d5dc322740b0097f56fc19311c8c74a44a55.zip
Doxygen-e847d5dc322740b0097f56fc19311c8c74a44a55.tar.gz
Doxygen-e847d5dc322740b0097f56fc19311c8c74a44a55.tar.bz2
issue #8103: C++ Table of content, namespace list does not contains namespace without class
Diffstat (limited to 'src/context.cpp')
-rw-r--r--src/context.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/context.cpp b/src/context.cpp
index 05429d3..5a9ab38 100644
--- a/src/context.cpp
+++ b/src/context.cpp
@@ -6541,7 +6541,7 @@ class NestingContext::Private : public GenericNodeListContext
if (!nd->isAnonymous() &&
(!rootOnly || nd->getOuterScope()==Doxygen::globalScope))
{
- bool hasChildren = namespaceHasVisibleChild(nd,addClasses,false,ClassDef::Class);
+ bool hasChildren = namespaceHasNestedNamespace(nd);
bool isLinkable = nd->isLinkableInProject();
if (isLinkable || hasChildren)
{