nl_brace_struct_var
Category: Newline adding and removing options Type: multiple (ignore add remove force) Default: ignore
Add or remove newline between the close brace and identifier, as in 'struct { int a; } <here> b;'. Affects enumerations, unions and structures. If set to ignore, uses nl_after_brace_close.
raw CPP code | nl_brace_struct_var=ignore | nl_brace_struct_var=add | nl_brace_struct_var=remove | nl_brace_struct_var=force | nl nl_brace_struct_var=force |
---|---|---|---|---|---|
struct S{int a;long l;float f;char c[8]}S; union U{int a;long l;float f;char c[8]}U; | struct S {int a; long l; float f; char c[8]} S; union U {int a; long l; float f; char c[8]} U; | struct S {int a; long l; float f; char c[8]} S; union U {int a; long l; float f; char c[8]} U; | struct S {int a; long l; float f; char c[8]} S; union U {int a; long l; float f; char c[8]} U; | struct S {int a; long l; float f; char c[8]} S; union U {int a; long l; float f; char c[8]} U; | struct S {int a;long l;float f;char c[8]} S; union U {int a;long l;float f;char c[8]} U; |
Not the best code for this option? See how to improve the .uds file used to generate these examples.