How to disable "warning: find unknown command" in doxygen

I would not want to annoy this:

Generating docs for compound bla_param... /home/mathieu/Projects/bla_parser.h:57: warning: Found unknown command `\0' /home/mathieu/Projects/bla_parser.h:57: warning: Found unknown command `\0' 

The only option I can think of is double shielding and has:

 /** Query parameters */ typedef struct bla_param{ char *cclose; /**< list of params, separated by '\\0' */ 

But this makes it difficult to read my code and adds extra work to developers when documenting the API ...

Any other solution that I haven't thought about?

+4
source share
1 answer

Upgrading to the latest version of Doxygen may solve this problem. I was able to reproduce this warning with Doxygen 1.6.2, but this did not happen in later versions (I tested 1.7.6.1, 1.8.0 and 1.8.2).

+1
source

Source: https://habr.com/ru/post/1442762/


All Articles