summaryrefslogtreecommitdiff
path: root/.clang-format
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2019-12-03 10:24:20 -0800
committerGitHub <noreply@github.com>2019-12-03 10:24:20 -0800
commit9693864abd9652fce905abaccb824dcff7d5d485 (patch)
treeb4767a069e02dcdae88a7bfe42d1d49240a9b97c /.clang-format
parentd47530bd5924286781325cf2db3477e83a3c6d4f (diff)
Fix clang-format file for brace wrapping with case labels. (#3523)
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.
Diffstat (limited to '.clang-format')
-rw-r--r--.clang-format1
1 files changed, 1 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format
index 23e537b33..a4e83f330 100644
--- a/.clang-format
+++ b/.clang-format
@@ -6,6 +6,7 @@ BinPackArguments: false
BinPackParameters: false
BreakBeforeBinaryOperators: NonAssignment
BraceWrapping:
+ AfterCaseLabel: true
AfterClass: true
AfterControlStatement: true
AfterEnum: true
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback