home  

pp_indent_case

Properties

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

Description

Whether to indent case statements between #if, #else, and #endif.
Only applies to the indent of the preprocessor that the case statements
directly inside of.

Default: true

Examples

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