From f7a450e7361fbbe3e0cca72ab59c96983530aeb9 Mon Sep 17 00:00:00 2001 From: NADAL Jean-Baptiste Date: Thu, 8 Feb 2024 18:48:04 +0100 Subject: [PATCH] [FIX] Fix Clang format --- .clang-format | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.clang-format b/.clang-format index 33de25e..7037a96 100644 --- a/.clang-format +++ b/.clang-format @@ -12,10 +12,10 @@ Standard: c++17 AccessModifierOffset: -4 # Force pointers to the type for C++. DerivePointerAlignment: false -PointerAlignment: Left +PointerAlignment: Right # Use 100 columns ColumnLimit: 120 -AlignConsecutiveStyle: Consecutive +AlignConsecutiveAssignments: Consecutive AllowAllParametersOfDeclarationOnNextLine: true AllowShortBlocksOnASingleLine: Never AlwaysBreakAfterReturnType: None @@ -30,4 +30,6 @@ IndentAccessModifiers: false ReferenceAlignment: Right BreakConstructorInitializers: AfterColon AlignArrayOfStructures: Right +PackConstructorInitializers: CurrentLine +AlignConsecutiveMacros: true ...