nl_split_if_one_liner
Category: Newline adding and removing options Type: boolean [false, true] Default: false
Whether to split one-line simple unbraced if statements into two lines by adding a newline, as in 'if(b) <here> i++;'.
raw CPP code | nl_split_if_one_liner=false | nl_split_if_one_liner=true | nl nl_split_if_one_liner=true |
---|---|---|---|
void fnl1(){if(a)b();else c();} void fnl2(){if(a){b();}else{c();}} | void fnl1(){ if(a) b(); else c(); } void fnl2(){ if(a){b();}else{c();} } | void fnl1(){ if(a) b(); else c(); } void fnl2(){ if(a){b();}else{c();} } | void fnl1(){ if(a) b();elsec(); } void fnl2(){ if(a){b();}else{c();} } |
Not the best code for this option? See how to improve the .uds file used to generate these examples.