Empty block style
EditorConfig key: cpp-empty-block-style
Empty block style
cpp-empty-block-style
Formatting of an empty brace block.
Default value:
unset
Possible values:
unset
multiline
together
together_same_line
Examples
unset
multiline
void f() { }
together
void f() {}
together_same_line
void f() {}