mod_full_brace_if_chain
Category: Code modifying options (non-whitespace) Type: numeric [0 .. 3] Default: 0
Whether to enforce that all blocks of an 'if'/'else if'/'else' chain either have, or do not have, braces. Overrides mod_full_brace_if. 0: Don't override mod_full_brace_if 1: Add braces to all blocks if any block needs braces and remove braces if they can be removed from all blocks 2: Add braces to all blocks if any block already has braces, regardless of whether it needs them 3: Add braces to all blocks if any block needs braces and remove braces if they can be removed from all blocks, except if all blocks have braces despite none needing them
raw CPP code | mod_full_brace_if_chain=0 | mod_full_brace_if_chain=1 | mod_full_brace_if_chain=2 | mod_full_brace_if_chain=3 |
---|---|---|---|---|
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(); } | 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.