indent_case_brace
Category: Indenting options Type: numeric [-16 .. 16] Default: 0
Spaces to indent '{' from 'case'. By default, the brace will appear under the 'c' in case. Usually set to 0 or indent_columns. Negative values are OK. It might be wise to choose the same value for the option indent_switch_case.
raw CPP code | indent_case_brace=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.