2
私はそれをしたい正確に似ている次のコードスニペットを、持っている:astyleは配列の初期化中括弧を処理できますか?
#include <iostream>
int main(int argc, char* argv[])
{
for (auto i: { 1, 2, 3 })
{
std::cout << i << std::endl;
}
}
あいにくのastyleにはには、このターン:
#include <iostream>
int main(int argc, char* argv[])
{
for (auto i :
{
1, 2, 3
})
{
std::cout << i << std::endl;
}
}
は私がのastyleの御馳走初期化子リストの中括弧を作ることができる方法はあります違うように(つまり無視する)?
これらは私の現在のオプションは次のとおりです。
--mode=c --style=allman --indent=spaces=4 -max-code-length=100 --attach-namespaces --pad-oper --pad-header
は、1つのソフトウェアまたは別のものを説くことを意図していませんが、代わりにclang形式を使用することを検討しましたか? – bolov