diff options
author | albert-github <albert.tests@gmail.com> | 2015-11-22 18:22:28 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2015-11-22 18:22:28 (GMT) |
commit | 7a2164d252a0cb5410ab13b0ca1611a8e94e3c99 (patch) | |
tree | 6b1f876c934f088d1601ff2e179a61998fecd35e /src/memberlist.cpp | |
parent | 40897d59939828ea07c591d83e9c2b4d2a00f43a (diff) | |
download | Doxygen-7a2164d252a0cb5410ab13b0ca1611a8e94e3c99.zip Doxygen-7a2164d252a0cb5410ab13b0ca1611a8e94e3c99.tar.gz Doxygen-7a2164d252a0cb5410ab13b0ca1611a8e94e3c99.tar.bz2 |
Bug 758132 - Brief description of non documented functions
In case a function or an other item is not documented and EXTRACT_ALL has not been specified it should not appear in the list with brief description of functions etc.
(This patch supersedes the patch as proposed in pull request 411 based on the comments from Dimitri van Heesch)
Diffstat (limited to 'src/memberlist.cpp')
-rw-r--r-- | src/memberlist.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/memberlist.cpp b/src/memberlist.cpp index b985412..b253682 100644 --- a/src/memberlist.cpp +++ b/src/memberlist.cpp @@ -387,7 +387,8 @@ void MemberList::writePlainDeclarations(OutputList &ol, } // if this is an anonymous enum and there are variables of this // enum type (i.e. enumVars>0), then we do not show the enum here. - if (enumVars==0) // show enum here + if ((enumVars==0) // show enum here + && md->hasDocumentation()) { //printf("Enum!!\n"); if (first) |