mod_full_brace_if
Category: Code modifying options (non-whitespace) Type: multiple (ignore add remove force) Default: ignore
Add or remove braces on a single-line 'if' statement. Braces will not be removed if the braced statement contains an 'else'.
raw CPP code | mod_full_brace_if=ignore | mod_full_brace_if=add | mod_full_brace_if=remove | mod_full_brace_if=force |
---|---|---|---|---|
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.