From: Jan Janssen Date: Sat, 28 May 2022 12:25:15 +0000 (+0200) Subject: clang-format: Adjust style of pointers X-Git-Tag: v252-rc1~911 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2581dbcb0f0d328015088d3dcf13119a717bcc3c;p=thirdparty%2Fsystemd.git clang-format: Adjust style of pointers We gernerally have our pointers aligned to the right. SpaceAroundPointerQualifiers makes sure "const char * const" is formatted nicely. --- diff --git a/.clang-format b/.clang-format index 6aa4e6a451f..fe360a648bd 100644 --- a/.clang-format +++ b/.clang-format @@ -27,22 +27,22 @@ AccessModifierOffset: -4 AlignAfterOpenBracket: AlwaysBreak AlignEscapedNewlines: Left -AlignOperands: false +AlignOperands: false AllowShortFunctionsOnASingleLine: None AlwaysBreakBeforeMultilineStrings: true AlwaysBreakTemplateDeclarations: Yes BinPackArguments: false BinPackParameters: false BraceWrapping: - AfterEnum: false + AfterEnum: false SplitEmptyFunction: false SplitEmptyRecord: false SplitEmptyNamespace: false BreakBeforeBraces: Custom -BreakInheritanceList: BeforeComma BreakBeforeTernaryOperators: false +BreakInheritanceList: BeforeComma BreakStringLiterals: false -ColumnLimit: 109 +ColumnLimit: 109 CompactNamespaces: true ConstructorInitializerAllOnOneLineOrOnePerLine: true ConstructorInitializerIndentWidth: 8 @@ -107,7 +107,7 @@ ForEachMacros: - STRV_FOREACH_BACKWARDS - STRV_FOREACH_PAIR IndentPPDirectives: AfterHash -IndentWidth: 8 +IndentWidth: 8 IndentWrappedFunctionNames: true MaxEmptyLinesToKeep: 2 PenaltyBreakAssignment: 65 @@ -117,8 +117,10 @@ PenaltyBreakFirstLessLess: 50 PenaltyBreakString: 0 PenaltyExcessCharacter: 10 PenaltyReturnTypeOnItsOwnLine: 100 +PointerAlignment: Right SpaceAfterCStyleCast: true +SpaceAroundPointerQualifiers: Both SpaceBeforeParens: ControlStatementsExceptForEachMacros -SpacesInAngles: true -TabWidth: 8 -UseCRLF: false +SpacesInAngles: true +TabWidth: 8 +UseCRLF: false