home  

nl_before_ignore_after_case

Properties

  Category: Newline adding and removing options
      Type: boolean [false, true]
   Default: false

Description

Ignore nl_before_{if,for,switch,do,synchronized} if the control
statement is immediately after a case statement.
if nl_before_{if,for,switch,do} is set to remove, this option
does nothing.

Examples

raw CPP code nl_before_ignore_after_case=false nl_before_ignore_after_case=true nl
nl_before_ignore_after_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;} } 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.