我在格式化 C++ lambda 时遇到了麻烦
这就是它把我的 lambda 变成:
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;
};
现在有没有人负责定位牙套的设置是什么?