indent_braces_no_struct
Category: Indenting options Type: boolean [false, true] Default: false
Whether to disable indenting struct braces if indent_braces=true.
raw CPP code | indent_braces_no_struct=false indent_braces=true |
indent_braces_no_struct=true indent_braces=true |
---|---|---|
struct S { void f(int i){ a=i; }; int a; }; struct S { void f(int i) { a=i; }; int a; }; | struct S { void f(int i){ a=i; }; int a; }; struct S { void f(int i) { a=i; }; int a; }; | struct S { void f(int i){ a=i; }; int a; }; struct S { void f(int i) { a=i; }; int a; }; |
Edited by JEAYNE
Not the best code for this option? See how to improve the .uds file used to generate these examples.