Skip to content

Commit f3aa879

Browse files
committed
Reinstate list of brief functions
In PR #9994 the line ` hasDocs = hasDocs ||` was changed into the current line ` hasDocs = hasDocs &&`, though this gives with CGAL problems that there are a few pages where there won't be the part with the brief descriptions generated (e.g he output page BGL/group___pkg_b_g_l_euler_operations.html). The function `isBriefSectionVisible` is for members and should have nothing to do with groups. - tested against #9994 - CGAL
1 parent f6f0118 commit f3aa879

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/memberdef.cpp

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2023,15 +2023,6 @@ bool MemberDefImpl::isBriefSectionVisible() const
20232023

20242024
auto it = Doxygen::memberGroupInfoMap.find(m_grpId);
20252025
bool hasDocs = hasDocumentation();
2026-
if (it!=Doxygen::memberGroupInfoMap.end())
2027-
{
2028-
auto &info = it->second;
2029-
//printf("name=%s m_grpId=%d info=%p\n",qPrint(name()),m_grpId,info);
2030-
//QCString *pMemGrp = Doxygen::memberDocDict[grpId];
2031-
hasDocs = hasDocs &&
2032-
// part of a documented member group
2033-
(m_grpId!=-1 && !(info->doc.isEmpty() && info->header.isEmpty()));
2034-
}
20352026

20362027
// only include static members with file/namespace scope if
20372028
// explicitly enabled in the config file

0 commit comments

Comments
 (0)