home  

mod_full_paren_if_bool

Properties

  Category: Code modifying options (non-whitespace)
      Type: boolean [false, true]
   Default: false

Description

Whether to fully parenthesize Boolean expressions in 'while' and 'if'
statement, as in 'if (a && b > c)' => 'if (a && (b > c))'.

Examples

raw CPP code mod_full_paren_if_bool=false mod_full_paren_if_bool=true
void fmod1(){if(a)b();else c();} void fmod2(){if(a){b();}else{c();}} void fmod1(){ if(a) b(); else c(); } void fmod2(){ if(a){b();}else{c();} } void fmod1(){ if(a) b(); else c(); } void fmod2(){ if(a){b();}else{c();} }
 

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