nl_after_for
Category: Newline adding and removing options Type: multiple (ignore add remove force) Default: ignore
Add or remove blank line after 'for' statement.
raw CPP code | nl_after_for=false | nl_after_for=true | nl nl_after_for=true |
---|---|---|---|
void f(int a){ for (int i=0; i<a; i++){ g(i); } g(a); for(int i=0; i<a; i++) g(i); g(a); for(int i=0; i<a; i++){ g(i); } } | void f(int a){ for (int i=0; i<a; i++){ g(i); } g(a); for(int i=0; i<a; i++) g(i); g(a); for(int i=0; i<a; i++){ g(i); } } | void f(int a){ for (int i=0; i<a; i++){ g(i); } g(a); for(int i=0; i<a; i++) g(i); g(a); for(int i=0; i<a; i++){ g(i); } } | void f(int a){ for (int i=0;ii++){ g(i); } g(a); for(int i=0;ii++) g(i); g(a); for(int i=0;ii++){ g(i); } } |
The blank line is added if the 'for' statement is followed by another statement, not by a '}'. Looks like the tracking is not working Edited by JEAYNE
Not the best code for this option? See how to improve the .uds file used to generate these examples.