0

我的源代码

namespace one { namespace two {
->  static const class Example :
->  ->  Int1, Int2, Int3
->  {
->  public:
->  Example::~Example() :
->  ->  S1(),
->  ->  S2(),
->  ->  S3() {
->  ->  // if statements with empty braces
->  ->  if ( x )
->  ->  {
->  ->  }
->  ->  }
->  }
->  }
} } //namespace one::two

被 Uncrustify 处理为 ("+" = SPACE)

namespace one { namespace two {
->  +static const class Example :
->  ->  +Int1, Int2, Int3
->  +{
->  +public:
->  +Example::~Example() :
->  ->  +S1(),
->  ->  +S2(),
->  ->  +S3() {
->  ->  +// if statements with empty braces
->  ->  +if ( x )
->  ->  +{
->  ->  +}
->  ->  +}
->  +}
->  +}
} } //namespace one::two

它总是在 TAB 缩进后添加一个空格(“+”)。

我在哪里可以配置这个?

最好的,本

4

1 回答 1

0

我自己找到了原因...

Uncrustify 不处理

namespace one { namespace two {

如果两者都在同一行上定义,则正确。当我将其更改为

namespace one { 
namespace two {

然后它工作正常,没有插入空间!

于 2015-01-22T08:09:19.683 回答