nl_after_return

Whether to put a blank line after 'return' statements, unless followed by a close brace.

Possible values are true and false, default false.

Examples

true

Before:

int foofunc(int x)
{
    if (x<10)
        return 20;
    x = x+40;
    return x;
}

After

int foofunc(int x)
{
    if (x<10)
        return 20;

    x = x+40;
    return x;
}

false

Example remains unchanged.

See also