clang-format space 属性前

clang-format space before attribute

我们正在使用 clang-format 来格式化支持 C++17 的代码库,我们想在属于变量的属性之前添加一个 space:

int x[[maybe_unused]] = foo(); // clang-format 6 does this
int y [[maybe_unused]] = bar(); // we'd like this

有谁知道如何进行适当的调整以获得额外的 space?我没有找到可以在 .clang-format 文件中设置的任何字段。

此问题已通过 clang-format 7.

解决