AllowAllParametersOfDeclarationOnNextLine
AllowAllParametersOfDeclarationOnNextLine (Boolean
)¶
Info
clang-format 3.3
如果函数声明不适合一行,则允许将函数声明的所有参数放到下一行,即使 BinPackParameters 为 false
。
void myFunction(
int a, int b, int c, int d, int e);
void myFunction(int a,
int b,
int c,
int d,
int e);
最后更新:
2022-10-31