diff options
author | albert-github <albert.tests@gmail.com> | 2019-06-03 12:36:19 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-06-03 12:36:19 (GMT) |
commit | bf19958a28329f21c92503247ad8d199b080f47b (patch) | |
tree | 56e8e53dec65391adf5b95206613d99683c1e913 /src/memberdef.cpp | |
parent | 54e7af6b0e7cf2063c86981c4dca7fcb8eca746a (diff) | |
download | Doxygen-bf19958a28329f21c92503247ad8d199b080f47b.zip Doxygen-bf19958a28329f21c92503247ad8d199b080f47b.tar.gz Doxygen-bf19958a28329f21c92503247ad8d199b080f47b.tar.bz2 |
Doxygen crash on ceph project
When running doxygen (master) on the ceph project (https://github.com/ceph/ceph/archive/v15.0.0.tar.gz) doxygen crashes with what looks like an endless loop.
Seen the code:
```
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); }
```
and the above code, it looks like the fix might be:
```
virtual int countMemberDeclarations(MemberListType lt,const ClassDef *inheritedFrom,
int lt2,bool invert,bool showAlways,QPtrDict<void> *visitedClasses) const
{ return getCdAlias()->countMemberDeclarations(lt,inheritedFrom,lt2,invert,showAlways,visitedClasses); }
```
Diffstat (limited to 'src/memberdef.cpp')
0 files changed, 0 insertions, 0 deletions