uncrustify で C++ ラムダをフォーマットするのに問題があります
これは私のラムダを次のように変えます:
auto print = [](auto const &i, qi::unused_type, qi::unused_type)
{
qDebug() << i;
};
これは私が望むものです:
auto print = [](auto const &i, qi::unused_type, qi::unused_type)
{
qDebug() << i;
};
ブレースの配置を担当する設定は誰ですか?