home  

mod_full_paren_return_bool

Properties

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

Description

Whether to fully parenthesize Boolean expressions after '='
statement, as in 'return  a && b > c;' => 'return (a && (b > c));'.

Examples

raw CPP code mod_full_paren_return_bool=false mod_full_paren_return_bool=true
void f(){return;} int f(){return a+b;} int f(){return(a+b);} void f(){ return; } int f(){ return a+b; } int f(){ return(a+b); } void f(){ return; } int f(){ return a+b; } int f(){ return(a+b); }
 

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