ReferenceAlignment
ReferenceAlignment (ReferenceAlignmentStyle
)¶
Info
clang-format 14
引用对齐样式(覆盖引用的 PointerAlignment)。
可能的值:
RAS_Pointer
: 像 PointerAlignment 一样对齐引用。
RAS_Left
: 将引用对齐到左侧。
int& a;
RAS_Right
: 将引用对齐到右侧。
int &a;
RAS_Middle
: 在中间对齐引用。
int & a;
最后更新:
2022-10-31