-
Notifications
You must be signed in to change notification settings - Fork 15.4k
Open
Labels
bugzillaIssues migrated from bugzillaIssues migrated from bugzillaclang-formatenhancementImproving things as opposed to bug fixing, e.g. new or missing featureImproving things as opposed to bug fixing, e.g. new or missing feature
Description
| Bugzilla Link | 52491 |
| Version | trunk |
| OS | Windows NT |
| Reporter | LLVM Bugzilla Contributor |
Extended Description
Some code styles, e.g. Microsoft use the following formatting for function arguments/parameters, which is impossible to configure with the available options:
// a.h
void func1(
int a1,
int a2
);
// a.c
void func2(
int b1,
int b2
) {
func1(
b1,
b2
);
};
Arguments/parameters should be always forced on a new line.
Zingam, H-G-Hristov, inkychris, xsautejeau and Terve16
Metadata
Metadata
Assignees
Labels
bugzillaIssues migrated from bugzillaIssues migrated from bugzillaclang-formatenhancementImproving things as opposed to bug fixing, e.g. new or missing featureImproving things as opposed to bug fixing, e.g. new or missing feature