summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-05-03 20:23:50 (GMT)
committerGitHub <noreply@github.com>2021-05-03 20:23:50 (GMT)
commitae0844009961225fe7b9755cb5e3e0a2ee90f00c (patch)
tree41b11cd1a8bceeddff81a5610ff20c8422558c3a
parent99f9fc74eda25616f3d5c3e40f030c8c7ecce4bb (diff)
parente97e5f0b35f6a70b9d69f1290a6c7e3685409b91 (diff)
downloadDoxygen-ae0844009961225fe7b9755cb5e3e0a2ee90f00c.zip
Doxygen-ae0844009961225fe7b9755cb5e3e0a2ee90f00c.tar.gz
Doxygen-ae0844009961225fe7b9755cb5e3e0a2ee90f00c.tar.bz2
Merge pull request #8431 from albert-github/feature/bug_idl_inconsit_2
Warnings regarding Internal inconsistency: namespace in IDL
-rw-r--r--src/namespacedef.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/namespacedef.cpp b/src/namespacedef.cpp
index fee5dc9..58d0ff0 100644
--- a/src/namespacedef.cpp
+++ b/src/namespacedef.cpp
@@ -81,7 +81,7 @@ class NamespaceDefImpl : public DefinitionMixin<NamespaceDefMutable>
virtual QCString localName() const;
virtual void setInline(bool isInline) { m_inline = isInline; }
virtual bool isConstantGroup() const { return CONSTANT_GROUP == m_type; }
- virtual bool isModule() const { return MODULE == m_type; }
+ virtual bool isModule() const { return NAMESPACE == m_type || MODULE == m_type; }
virtual bool isLibrary() const { return LIBRARY == m_type; }
virtual bool isInline() const { return m_inline; }
virtual bool isLinkableInProject() const;