nl_split_while_one_liner
Category: Newline adding and removing options Type: boolean [false, true] Default: false
Whether to split one-line simple unbraced while statements into two lines by adding a newline, as in 'while (expr) <here> stmt;'.
raw CPP code | nl_split_while_one_liner=false | nl_split_while_one_liner=true | nl nl_split_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.