Can I ask why the decision was made to apply --indent-classes?
With longer signatures (nevermind const or noexcept) the first of the below pushes things pretty far into the right margin.
class foo
{
public:
void bar();
};
class foo
{
public:
void bar();
};
class foo {
public:
void bar();
};
Thanks.