summaryrefslogtreecommitdiff
path: root/.clang-format
diff options
context:
space:
mode:
authorClausKlein <claus.klein@arcormail.de>2021-06-03 21:56:09 +0200
committerClausKlein <claus.klein@arcormail.de>2021-06-03 21:56:09 +0200
commitc412d454d866452cec1cc1837a6d501ef1bdeb73 (patch)
treec412eb12f6246d74b63e1e705490fb886bd1cac7 /.clang-format
parent2c7d1c0d018acfd7bee05099371f6eea534cd315 (diff)
downloadATCD-c412d454d866452cec1cc1837a6d501ef1bdeb73.tar.gz
do not AlignConsecutiveDeclarations
and set SpaceAfterLogicalNot: false according review comments check unique_ptr with bool operator too
Diffstat (limited to '.clang-format')
-rw-r--r--.clang-format4
1 files changed, 2 insertions, 2 deletions
diff --git a/.clang-format b/.clang-format
index 91421e535a6..76061fee905 100644
--- a/.clang-format
+++ b/.clang-format
@@ -2,7 +2,7 @@
# This configuration requires clang-format version v12.0 or newer.
BasedOnStyle: Mozilla
#
-AlignConsecutiveDeclarations: Consecutive
+AlignConsecutiveDeclarations: None
AlignEscapedNewlines: Left
AlignOperands: false
AllowAllParametersOfDeclarationOnNextLine: false
@@ -43,7 +43,7 @@ ColumnLimit: 123 # MAYBE up to 160
IndentPPDirectives: AfterHash
SortUsingDeclarations: false
SpaceAfterTemplateKeyword: true
-SpaceAfterLogicalNot: true
+SpaceAfterLogicalNot: false
SpaceBeforeParens: Always
SpaceInEmptyBlock: false
...