我需要一种在emacs c-mode缩进引擎中重现--indent-class
astyle
切换效果的方法。
代码如下所示:
class Foo
{
public:
Foo(){}
private:
void bar();
};
我已经提出的方法,将inclass
设置为++
并access-label
设置为-
,以防止类没有访问说明符的情况:
struct Foo
{
void bar();
};
我得到双重缩进,即使在这种情况下我不需要它。
我错过了什么?