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
- indent_func_def_param: Same as indent_func_def_param but for function definitions.
- indent_func_proto_param: Same as indent_func_def_param, but for function prototypes.
- indent_func_class_param: Same as indent_func_def_param, but for class declarations.
- indent_func_ctor_var_param: Same as indent_func_def_param, but for class variable constructors.