aboutsummaryrefslogtreecommitdiff
path: root/src/.clang-format
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-11-12 12:04:26 +0100
committerMarcoFalke <falke.marco@gmail.com>2021-11-12 11:46:34 +0100
commitfaeb748f5bd88b4de734fea40e94edbbaf8a79fd (patch)
treee7d48d4cd8962ff57bfa7442f962ba933f92fb80 /src/.clang-format
parent1ff265a20c36ada4c7b1c5c88d31eb92ec9e8420 (diff)
downloadbitcoin-faeb748f5bd88b4de734fea40e94edbbaf8a79fd.tar.xz
Use c++17 in clang-format
Diffstat (limited to 'src/.clang-format')
-rw-r--r--src/.clang-format11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/.clang-format b/src/.clang-format
index a69c57f3e0..791b3b8f9f 100644
--- a/src/.clang-format
+++ b/src/.clang-format
@@ -34,14 +34,6 @@ IndentWidth: 4
KeepEmptyLinesAtTheStartOfBlocks: false
MaxEmptyLinesToKeep: 2
NamespaceIndentation: None
-ObjCSpaceAfterProperty: false
-ObjCSpaceBeforeProtocolList: false
-PenaltyBreakBeforeFirstCallParameter: 1
-PenaltyBreakComment: 300
-PenaltyBreakFirstLessLess: 120
-PenaltyBreakString: 1000
-PenaltyExcessCharacter: 1000000
-PenaltyReturnTypeOnItsOwnLine: 200
PointerAlignment: Left
SpaceBeforeAssignmentOperators: true
SpaceBeforeParens: ControlStatements
@@ -51,6 +43,5 @@ SpacesInAngles: false
SpacesInContainerLiterals: true
SpacesInCStyleCastParentheses: false
SpacesInParentheses: false
-Standard: Cpp11
-TabWidth: 8
+Standard: c++17
UseTab: Never