标签: c++ clang-format
我的代码中有一些评论:
//asdf
当我在其上使用clang-format时,它会在//字符后面添加一个空格:
// asdf
如何防止在clang格式配置中发生这种情况?
由于
答案 0 :(得分:6)
将这两个问题的答案结合起来可以解决问题:
因此,.clang-format文件中的以下行应该可以解决问题(我没有测试过):
.clang-format
CommentPragmas: '^[^ ]'
告诉clang-format不要混淆那些以空格以外的东西开头的评论。
For completeness, clang-format documentation here