This change also comma-separated identifiers inside parentheses as a
possible function declaration.
When using the always break after return type setting:
Before:
SomeType funcdecl(SomeType);
SomeType funcdecl(SomeType, OtherType);
After:
SomeType
funcdecl(SomeType);
SomeType
funcdecl(SomeType, OtherType);
Depends on D87007 (to apply cleanly)
clang-tidy: error: use of undeclared identifier 'TT_TypeDeclarationParen' [clang-diagnostic-error]
not useful