home  

indent_ignore_case_brace

Properties

  Category: Indenting options
      Type: boolean [false, true]
   Default: false

Description

Whether to ignore indent for '{' following 'case'.

Examples

raw CPP code indent_ignore_case_brace=false indent_ignore_case_brace=true
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.