I'm having trouble getting uncrustify to format C++ lambdas
this is what it turns my lambda into:
auto print = [](auto const &i, qi::unused_type, qi::unused_type)
{
qDebug() << i;
};
This is what I would like:
auto print = [](auto const &i, qi::unused_type, qi::unused_type)
{
qDebug() << i;
};
Doe anyone now what setting is responsible for the positioning of the braces?