indent_switch_body
Category: Indenting options Type: numeric [0 .. 16] Default: 0
Spaces to indent the body of a 'switch' before any 'case'. Usually the same as indent_columns or indent_switch_case.
raw CPP code | indent_switch_body=0 | indent_switch_body=5 | indent_switch_body=10 | indent_switch_body=16 |
---|---|---|---|---|
void f(){switch(a){case 1:a++;break;case -1:a--;case 123:a--;break;default:a=0;}} | void f(){ switch(a){case 1: a++; break; case -1: a--; case 123: a--; break; default: a=0;} } | void f(){ switch(a){case 1: a++; break; case -1: a--; case 123: a--; break; default: a=0;} } | void f(){ switch(a){case 1: a++; break; case -1: a--; case 123: a--; break; default: a=0;} } | void f(){ switch(a){case 1: a++; break; case -1: a--; case 123: a--; break; default: a=0;} } |
Not the best code for this option? See how to improve the .uds file used to generate these examples.