Description
The line
LongClassName<AnotherLongClassName>{param}->longFunctionName(param0, param1);
is formatted to:
LongClassName<AnotherLongClassName> { param } -> longFunctionName(param0, param1);
with Clang 13 and the attached configuration file, and formatted to:
LongClassName<AnotherLongClassName>
{
param
} -> longFunctionName(param0, param1);
with Clang 14 & 15.
Reproduced with https://clang-format-configurator.site/
Thanks
clang-format.txt