align_var_struct_gap
Category: Code alignment options (not left column spaces/tabs) Type: numeric [0 .. 16] Default: 0
The gap for aligning struct/union member definitions.
raw CPP code | align_var_struct_gap=0 | align_var_struct_gap=5 | align_var_struct_gap=10 | align_var_struct_gap=16 |
---|---|---|---|---|
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.