clang 格式格式文档注释

clang-format formats documentation comment

提问人:jbachmann 提问时间:11/9/2023 最后编辑:jbachmann 更新时间:11/9/2023 访问量:22

问:

如何告诉clang-format忽略文档注释,如下所示

/***************************************************************************//**
  * @brief
  *   ...
*******************************************************************************/
void function(){
    ...
} 

不限制一般注释格式。或者手动关闭和打开 clang-format。

我试过了

ReflowComments: false
PenaltyBreakComment: 1000000000

但这会影响常规注释格式。

注释 clang-format

评论


答: 暂无答案