From bb6069f8d42de36c64088300e073440632b89f0d Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Sun, 7 May 2023 21:31:12 -0600 Subject: [PATCH] .clang-format: update some things reported by linter + set c++20 --- .clang-format | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.clang-format b/.clang-format index 258b213c..079e8750 100644 --- a/.clang-format +++ b/.clang-format @@ -4,10 +4,10 @@ Language: Cpp AccessModifierOffset: -4 AlignAfterOpenBracket: false #AlignArrayOfStructures: Right -AlignConsecutiveMacros: false -AlignConsecutiveAssignments: false -AlignConsecutiveBitFields: false -AlignConsecutiveDeclarations: false +AlignConsecutiveMacros: None +AlignConsecutiveAssignments: None +AlignConsecutiveBitFields: None +AlignConsecutiveDeclarations: None AlignEscapedNewlines: Right AlignOperands: Align AlignTrailingComments: false @@ -92,7 +92,7 @@ PenaltyExcessCharacter: 1000000 PenaltyReturnTypeOnItsOwnLine: 60 PointerAlignment: Right ReflowComments: true -SortIncludes: false +SortIncludes: Never SortUsingDeclarations: false SpaceAfterCStyleCast: false SpaceAfterLogicalNot: false @@ -111,7 +111,7 @@ SpacesInCStyleCastParentheses: false SpacesInParentheses: false SpacesInSquareBrackets: false SpaceBeforeSquareBrackets: false -Standard: c++17 +Standard: c++20 TabWidth: 4 UseCRLF: false UseTab: Never