有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);
当我无法通过名称引用该参数时,该如何记录呢?
答案 0 :(得分:0)
Doxygen当前(2020年7月)未实现此功能。但是,已在Doxygen GitHub问题页面上为其打开功能请求: