diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-06-05 10:56:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-05 10:56:20 (GMT) |
commit | e773e6cb9e117621e06fb81098d33417e8a97720 (patch) | |
tree | 56e8e53dec65391adf5b95206613d99683c1e913 | |
parent | 54e7af6b0e7cf2063c86981c4dca7fcb8eca746a (diff) | |
parent | bf19958a28329f21c92503247ad8d199b080f47b (diff) | |
download | Doxygen-e773e6cb9e117621e06fb81098d33417e8a97720.zip Doxygen-e773e6cb9e117621e06fb81098d33417e8a97720.tar.gz Doxygen-e773e6cb9e117621e06fb81098d33417e8a97720.tar.bz2 |
Merge pull request #7024 from albert-github/feature/bug_classdef_count
Doxygen crash on ceph project
-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 3a680c5..8f04505 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -516,7 +516,7 @@ class ClassDefAliasImpl : public DefinitionAliasImpl, public ClassDef { return getCdAlias()->countInheritanceNodes(); } virtual int countMemberDeclarations(MemberListType lt,const ClassDef *inheritedFrom, int lt2,bool invert,bool showAlways,QPtrDict<void> *visitedClasses) const - { return countMemberDeclarations(lt,inheritedFrom,lt2,invert,showAlways,visitedClasses); } + { return getCdAlias()->countMemberDeclarations(lt,inheritedFrom,lt2,invert,showAlways,visitedClasses); } virtual void writeMemberDeclarations(OutputList &ol,MemberListType lt,const QCString &title, const char *subTitle=0,bool showInline=FALSE,const ClassDef *inheritedFrom=0, int lt2=-1,bool invert=FALSE,bool showAlways=FALSE, |