I use a library which redefine the void type (among others):
#define XX_VOID void
So when I run doxygen on a code like
/**
* @brief Function description
*/
XX_VOID foo(XX_VOID)
{
/*...*/
}
I get the warning
file.c:10: warning: return type of member foo is not documented
How can I tell Doxygen that XX_VOID
is void so there is no return value ?
You can try with the
MACRO_EXPANSION
tag:With
MACRO_EXPANSION
set toYES
the result after doxygen preprocessing becomes: