ls_for_split_full
Category: Line splitting options Type: boolean [false, true] Default: false
Whether to fully split long 'for' statements at semi-colons.
raw CPP code | ls_for_split_full=false | ls_for_split_full=true |
---|---|---|
void f1(){for(i=0;i<10;i++)a++;} void f2(){for(i=0;i<10;i++){a++;}} | void f1(){ for(i=0; i<10; i++) a++; } void f2(){ for(i=0; i<10; i++){a++;} } | void f1(){ for(i=0; i<10; i++) a++; } void f2(){ for(i=0; i<10; i++){a++;} } |
Not the best code for this option? See how to improve the .uds file used to generate these examples.