SpaceInEmptyParentheses
SpaceInEmptyParentheses (Boolean
)¶
Info
clang-format 3.7
如果为 true
,可以在 ()
中插入空格。
void f( ) {
int x[] = {foo( ), bar( )};
if (true) {
f( );
}
}
void f() {
int x[] = {foo(), bar()};
if (true) {
f();
}
}
最后更新:
2022-10-31