mod_full_brace_while
Category: Code modifying options (non-whitespace) Type: multiple (ignore add remove force) Default: ignore
Add or remove braces on single-line 'while' statement.
raw CPP code | mod_full_brace_while=ignore | mod_full_brace_while=add | mod_full_brace_while=remove | mod_full_brace_while=force |
---|---|---|---|---|
void f1(){while(a>0)a++;} void f1(){while(a>0){a++;}} | void f1(){ while(a>0) a++; } void f1(){ while(a>0){a++;} } | void f1(){ while(a>0){a++;} } void f1(){ while(a>0){a++;} } | void f1(){ while(a>0) a++; } void f1(){ while(a>0) a++; } | void f1(){ while(a>0){a++;} } void f1(){ while(a>0){a++;} } |
Not the best code for this option? See how to improve the .uds file used to generate these examples.