I am trying to document several similar functions at the same time using Doxygen groups. I would like the functions to use the same documentation as shown in the example here .
int func1(void);
int func2(void);
int func3(void);
int func4(void);
However, when I run doxygen, only the second group maps the @brief message to the HTML output. Am I doing something wrong, or is this a potential mistake?
Notice I'm not trying to nest the groups that doxygen documentation talks about.
source
share