sp_case_label
Category: Spacing options Type: multiple (ignore add remove force) Default: ignore
Fix the spacing between 'case' and the label. Only 'ignore' and 'force' make sense here.
raw CPP code | sp_case_label=ignore | sp_case_label=add | sp_case_label=remove | sp_case_label=force | space sp_case_label=force |
---|---|---|---|---|---|
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;} } | voidf(){ switch(a){case1:a++;break;case-1:a--;case123:a--;break;default:a=0;} } |
Not the best code for this option? See how to improve the .uds file used to generate these examples.