nl_create_if_one_liner

Whether to remove a newline in simple unbraced if statements, turning them into one-liners, as in if(b)\n i++; => if(b) i++;.

Possible values are true and false, default false.

Examples

true

Before:

if (y>3)
{
    std::cout << "y too large" << '\n';
}

if (y<3)
    std::cout << "y is small" << '\n';

After

if (y>3)
{
    std::cout << "y too large" << '\n';
}

if (y<3) std::cout << "y is small" << '\n';

Note, only second statement was changed.

false

Example remains unchanged.

See also