<div dir="ltr"><div>Dear Clang Developers,</div><div><br></div><div>Please, redirect me if it is not the right place for the question below.<br></div><div><br></div><div>If I interpret the documentation correctly AllowAllArgumentsOnNextLine and AllowAllParametersOfDeclarationOnNextLine<br></div><div>are only applied to function calls and function declarations respectively.</div><div><br></div><div>From this perspective I find templates (both function and class) very similar to normal functions.</div><div><br></div><div>Therefore, I just wanted to ask if it was ever considered to have similar functionality for templates by having</div><div>something like AllowAllTemplateArgumentsOnNextLine and AllowAllTemplateParametersOfDeclarationOnNextLine</div><div>to control the behavior in the following cases:</div><div><br></div><div>true:</div><div>callFunctionTemplate<</div><div>    a, b, c, d>();</div><div>callClassTemplateStaticMethod<</div><div>    a, b, c, d>::functionCall();</div><div><br></div><div>false:</div><div>callFunctionTemplate<a,</div><div>                                     b,</div><div>                                     c,</div><div>                                     d>();</div><div>callClassTemplateStaticMethod<a</div><div>                                                     b,</div><div>                                                     c,</div><div>                                                     d>::functionCall()</div><div><br></div><div>If it makes sense, may I consider this as a feature request please?<br></div><div><br></div><div>Thanks in advance.</div><div><br></div><div>Kind regards,</div><div>Marat<br></div></div>