indent_template_param

Same as indent_func_call_param, but for template parameter lists.

Possible values are true and false, default false.

Does not work with Uncrustify_d-0.70.1_f (applies same changes for both true and false).

Examples

true

Before:

int main () {
...
    k=GetMax<int>(i,
        j);
    n=GetMax<long>(l,
            m);
...
}

code after:

int main () {
...
    k=GetMax<int>(i,
                  j);
    n=GetMax<long>(l,
                   m);
...
}

false

Same as true.

See also