-
Notifications
You must be signed in to change notification settings - Fork 15.2k
Closed
Labels
bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorbugzillaIssues migrated from bugzillaIssues migrated from bugzillaclang-format
Description
Bugzilla Link | 46087 |
Version | 10.0 |
OS | Windows NT |
CC | @mkurdej,@mydeveloperday,@GoBigorGoHome |
Extended Description
.clang-format:
ForEachMacros: ['rng']
AllowShortBlocksOnASingleLine: Never
Before:
rng (i, 0, 10) {
std::cout << i;
}
After:
rng (i, 0, 10) { std::cout << i; }
Expect:
rng (i, 0, 10) {
std::cout << i;
}
Metadata
Metadata
Assignees
Labels
bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorbugzillaIssues migrated from bugzillaIssues migrated from bugzillaclang-format