I have several empty inline function definitions in C++ like so:
class C
{
void foo(){}
void bar(){}
};
now if I run indent -st -i4 -nut test.cc in order to just fix the indentation I get
class C
{
void foo ()
{
}
void bar ()
{
}
};
But I just want to fix the indentation without moving curly braces around!
How can I achieve that?