Skip to content

Commit

Permalink
Bug 303020 - Missing warning of undocumented member in member group
Browse files Browse the repository at this point in the history
Removed restrictions that functions / variables / enums ... in a \name command were executed from the test.
(Note: In case of functions the arguments were tested or presence).
  • Loading branch information
albert-github committed Apr 10, 2018
1 parent 7e2fcd3 commit fe7e597
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/memberdef.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3212,7 +3212,10 @@ QCString MemberDef::memberTypeName() const

void MemberDef::warnIfUndocumented()
{
if (m_impl->memberGroup) return;
/*
* Removed bug_303020:
* if (m_impl->memberGroup) return;
*/
ClassDef *cd = getClassDef();
NamespaceDef *nd = getNamespaceDef();
FileDef *fd = getFileDef();
Expand Down

0 comments on commit fe7e597

Please sign in to comment.