使用 clang 格式放置 const
Placement of const with clang-format
clang-format
有大量关于空格的配置选项,还有一些关于代码顺序(包含顺序)的配置选项。是否可以对 const 限定符重新排序,以便将它们放置在相应类型的右侧?
示例:声明 const int x = 0;
应格式化为 int const x = 0;
.
否,根据 clang-format
的当前 documentation 没有提及此类功能。
此功能似乎正在开发中:https://reviews.llvm.org/D69764
clang-format
有大量关于空格的配置选项,还有一些关于代码顺序(包含顺序)的配置选项。是否可以对 const 限定符重新排序,以便将它们放置在相应类型的右侧?
示例:声明 const int x = 0;
应格式化为 int const x = 0;
.
否,根据 clang-format
的当前 documentation 没有提及此类功能。
此功能似乎正在开发中:https://reviews.llvm.org/D69764