Set: AllowShortLambdasOnASingleLine : Inline
Example (brace):
auto guard = scope_exit{[&]{exit_status = true;}};
formats to:
auto guard = scope_exit{ [&]
{
exit_status = true;
} };
Should be:
auto guard = scope_exit{[&] { exit_status = true; }};
This works correctly with parenthesis constructor parameters.