home  

mod_case_brace

Properties

  Category: Code modifying options (non-whitespace)
      Type: multiple (ignore add remove force)
   Default: ignore

Description

Add or remove braces around a fully braced case statement. Will only remove
braces if there are no variable declarations in the block.

Examples

raw CPP code mod_case_brace=ignore mod_case_brace=add mod_case_brace=remove mod_case_brace=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;}} }
 

Not the best code for this option? See how to improve the .uds file used to generate these examples.