home  

ls_for_split_full

Properties

  Category: Line splitting options
      Type: boolean [false, true]
   Default: false

Description

Whether to fully split long 'for' statements at semi-colons.

Examples

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.