summaryrefslogtreecommitdiffstats
path: root/src/context.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-08-25 14:12:28 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-08-25 14:12:28 (GMT)
commit12d999af7931c96dfb9dc366d785c3981ac244d4 (patch)
tree6a20c3dc5455dd1fe80017f34dc88f40ab2673ac /src/context.cpp
parent082e135c2de6a4d84074f006726f4b6ff53b1169 (diff)
downloadDoxygen-12d999af7931c96dfb9dc366d785c3981ac244d4.zip
Doxygen-12d999af7931c96dfb9dc366d785c3981ac244d4.tar.gz
Doxygen-12d999af7931c96dfb9dc366d785c3981ac244d4.tar.bz2
issue #7216: non-const getGroupDef() called on aliased member
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 49c9afa..1933d43 100644
--- a/src/context.cpp
+++ b/src/context.cpp
@@ -9302,7 +9302,7 @@ class InheritedMemberInfoListContext::Private : public GenericNodeListContext
MemberDef *md;
for (li.toFirst();(md=li.current());++li)
{
- if (lt==md->getSectionList(mg->parent())->listType() &&
+ if (lt==md->getSectionList()->listType() &&
!md->isReimplementedBy(inheritedFrom) &&
md->isBriefSectionVisible())
{