diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-08-25 14:12:28 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2019-08-25 14:12:28 (GMT) |
commit | 12d999af7931c96dfb9dc366d785c3981ac244d4 (patch) | |
tree | 6a20c3dc5455dd1fe80017f34dc88f40ab2673ac /src/classdef.cpp | |
parent | 082e135c2de6a4d84074f006726f4b6ff53b1169 (diff) | |
download | Doxygen-12d999af7931c96dfb9dc366d785c3981ac244d4.zip Doxygen-12d999af7931c96dfb9dc366d785c3981ac244d4.tar.gz Doxygen-12d999af7931c96dfb9dc366d785c3981ac244d4.tar.bz2 |
issue #7216: non-const getGroupDef() called on aliased member
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r-- | src/classdef.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp index 856ab05..78284d5 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -4813,7 +4813,7 @@ void ClassDefImpl::addMemberToList(MemberListType lt,MemberDef *md,bool isBrief) ml->append(md); // for members in the declaration lists we set the section, needed for member grouping - if ((ml->listType()&MemberListType_detailedLists)==0) md->setSectionList(this,ml); + if ((ml->listType()&MemberListType_detailedLists)==0) md->setSectionList(ml); } void ClassDefImpl::sortMemberLists() |