aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2022-03-17 10:31:19 +0100
committerGitHub <[email protected]>2022-03-17 10:31:19 +0100
commitf68e7e6fd8510e53360423daeb0c9e535caaeb5d (patch)
tree9e34f778b6c9f5cb4d84a68711db1ee6e10e6ff4
parentBump xmake install instructions to 2.6.4 (diff)
downloadzen-f68e7e6fd8510e53360423daeb0c9e535caaeb5d.tar.xz
zen-f68e7e6fd8510e53360423daeb0c9e535caaeb5d.zip
FIxed up .clang-format setting for enums
clang-format 12.0.0 which we used previously did not respect the AfterEnum setting, which lead to reformatting when using more recent builds. This change updates the setting to match the old behaviour
-rw-r--r--.clang-format2
1 files changed, 1 insertions, 1 deletions
diff --git a/.clang-format b/.clang-format
index f1b47c7d7..38336c39c 100644
--- a/.clang-format
+++ b/.clang-format
@@ -31,7 +31,7 @@ BraceWrapping:
AfterCaseLabel: true
AfterClass: true
AfterControlStatement: Always
- AfterEnum: false
+ AfterEnum: true
AfterFunction: true
AfterNamespace: false
AfterObjCDeclaration: false