我有一些代码要记录在正文中,如下所示:
/*! \file best.cpp
* \brief The best
*
* I am the best
*/
/*! \fn void theBestFunction(int)
* I'm the best blah blah blah
*/
void theBestFunction(int ever)
{
doThings();
/*!
* Does some more things
*/
doMoreThings();
/*!
* Checks that the things it does are the best
*/
checkBest();
}
但是当我运行它时doxygen
,它似乎将内部块格式化为代码片段,就好像使用了@code
or\code
命令(它们不是)。我希望正文评论的格式与普通文本一样。
有没有人遇到过这个?谢谢。