大家好,我试图阻止 Eclipse 中的自动格式化,使其在结尾有 throw() 语句的函数之后缩进我的左大括号和右大括号。
例如
void function(std::string param) throw()
{
}
自动格式化后将如下所示:
void function(std::string param) throw()
{
}
但是每次我自动格式化我的代码时,它都会在括号前面添加另一个选项卡。任何人都知道我可以如何关闭此功能,或者它是一个错误
Eclipse 信息:版本:Juno Release Build id:20120614-1722 使用 CDT
注意: 我使用的是我自己的代码样式配置文件。