Fix clang-format file for brace wrapping with case labels. (#3523)
authorAina Niemetz <aina.niemetz@gmail.com>
Tue, 3 Dec 2019 18:24:20 +0000 (10:24 -0800)
committerGitHub <noreply@github.com>
Tue, 3 Dec 2019 18:24:20 +0000 (10:24 -0800)
More recent clang version introduce an extra flag AfterCaseLabel for brace wrapping after case labels. Default is false, with the effect opening braces after case labels will be aligned on the same line as the label. Our style requires it to be set to true.

.clang-format

index 23e537b33934ed62673396a1bc0bf7494b7436d7..a4e83f330308469868e993dfbddd3791777551ee 100644 (file)
@@ -6,6 +6,7 @@ BinPackArguments: false
 BinPackParameters: false
 BreakBeforeBinaryOperators: NonAssignment
 BraceWrapping:
+  AfterCaseLabel: true
   AfterClass: true
   AfterControlStatement: true
   AfterEnum: true