我如何用 doxygen 记录函数的未命名参数?
How do I doxygen-document unnamed parameters of a function?
有了doxygen,我习惯写
/**
* @brief blah blah
*
* @param foo description of foo
* @param bar description of bar
* @return description of the return value
*/
int f(int foo, unsigned bar);
但是,如果我不指定其中一个参数怎么办? :
int f(int, unsigned bar);
当我无法通过名称引用该参数时,如何记录该参数?
Doxygen 目前(2020 年 7 月)未实现此功能。但是,已在 Doxygen GitHub 问题页面上为其打开了一个功能请求:
有了doxygen,我习惯写
/**
* @brief blah blah
*
* @param foo description of foo
* @param bar description of bar
* @return description of the return value
*/
int f(int foo, unsigned bar);
但是,如果我不指定其中一个参数怎么办? :
int f(int, unsigned bar);
当我无法通过名称引用该参数时,如何记录该参数?
Doxygen 目前(2020 年 7 月)未实现此功能。但是,已在 Doxygen GitHub 问题页面上为其打开了一个功能请求: