home  

nl_create_while_one_liner

Properties

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

Description

Whether to remove a newline in simple unbraced while statements, turning
them into one-liners, as in 'while (expr)\n stmt;' => 'while (expr) stmt;'.

Examples

raw CPP code nl_create_while_one_liner=false nl_create_while_one_liner=true nl
nl_create_while_one_liner=true
void f1(){while(a>0)a++;} void f1(){while(a>0){a++;}} void f1(){ while(a>0) a++; } void f1(){ while(a>0){a++;} } void f1(){ while(a>0) a++; } void f1(){ while(a>0){a++;} } void f1(){ while(a>0) a++; } void f1(){ while(a>0){a++;} }
 

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