Doxygen: How to redefine void

721 Views Asked by At

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 ?

1

There are 1 best solutions below

3
On BEST ANSWER

You can try with the MACRO_EXPANSION tag:

MACRO_EXPANSION

If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names in the source code. If set to NO, only conditional compilation will be performed. Macro expansion can be done in a controlled way by setting EXPAND_ONLY_PREDEF to YES.

The default value is: NO.

This tag requires that the tag ENABLE_PREPROCESSING is set to YES.

With MACRO_EXPANSION set to YES the result after doxygen preprocessing becomes:

void foo(void)
{
  /* ... */
}