我正在使用 Doxygen 记录一个代码库,并且想知道是否有一个关键字可以将函数的参数声明为可选的。就像是:
/*!
\fn int add(int a, int b=0)
\brief adds two values
\param a the first operand
\param \optional b the second operand. Default is 0
\return the result
*/
似乎这是应该存在的东西,但我无法在任何地方找到它。有没有实际的选择,还是我只需要在描述中记下?