You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When using both grouping and templates, Doxygen complains that all but the first element of the group do not have documentation. Documentation is however correctly created (inherited).
To Reproduce
Since it is an extremely short test case, I'll inline it:
/** SA. */template <typename T>
structA
{
public:///@{/** Same documentation for all members. Details */voidf1 ();
voidf2 ();
voidf3 ();
///@}
};
/** SB. */classB : publicA<int> {};
file.cpp:9: warning: Member f2() (function) of class A< int > is not documented.
file.cpp:10: warning: Member f3() (function) of class A< int > is not documented.
Expected behavior f2 and f3are documented, this warning should not appear.
Version
1.12.0 on Arch Linux latest from official sources.