标签: indentation
我在C ++中有几个空的内联函数定义,如下所示:
class C { void foo(){} void bar(){} };
现在如果我运行indent -st -i4 -nut test.cc以便修复我得到的缩进
indent -st -i4 -nut test.cc
class C { void foo () { } void bar () { } };
但我只是想在不移动花括号的情况下修复缩进!
我怎样才能做到这一点?