I would like to archive a following code structure automatically by Uncrustify:
Class(int aArg1, int aArg2, int aArg3)
: BaseClass(aArg1)
, iMember1(aArg1)
, iMember2(aArg2)
{
}
I've tried Uncrustify version: 0.63:
pos_constr_comma = lead_force
but it doesn't work. What should I set to have a code like above?