sp_inside_braces_struct
Category: Spacing options Type: multiple (ignore add remove force) Default: ignore
Add or remove space inside struct/union '{' and '}'.
raw CPP code | sp_inside_braces_struct=ignore | sp_inside_braces_struct=add | sp_inside_braces_struct=remove | sp_inside_braces_struct=force | space sp_inside_braces_struct=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; | structS{inta;longl;floatf;charc[8]}S; unionU{inta;longl;floatf;charc[8]}U; |
Not the best code for this option? See how to improve the .uds file used to generate these examples.