跳转至

SpacesBeforeTrailingComments

SpacesBeforeTrailingComments (Unsigned)

Info

clang-format 3.7

尾行注释(// -注释)之前的空格数。

这不会影响末尾的块注释(/* -注释),因为这些注释通常有不同的使用模式和一些特殊情况。

SpacesBeforeTrailingComments: 3
void f() {
    if (true) {   // foo1
        f();      // bar
    }             // foo
}

最后更新: 2022-10-31