Doxygen - <X>:1: warning: return type of member X is not documented
- by Matt Clarkson
/*! \var GLOBAL_VAR
* \brief This is my global initialisation array for MY_STRUCT
*/
MY_STRUCT GLOBAL_VAR = {
1,
3,
2,
1,
};
I get the following error:
<GLOBAL_VAR>:1: warning: return type of member GLOBAL_VAR is not documented
But this shouldn't have any return type?!
If I do either of the following the warning…