mod_full_brace_if_chain_only
Category: Code modifying options (non-whitespace) Type: boolean [false, true] Default: false
Whether to add braces to all blocks of an 'if'/'else if'/'else' chain. If true, mod_full_brace_if_chain will only remove braces from an 'if' that does not have an 'else if' or 'else'.
raw CPP code | mod_full_brace_if_chain_only=false | mod_full_brace_if_chain_only=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.