From 795e3c4ce11dea3df7ef164c3faeef01026cb6c5 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Fri, 2 Jul 2021 14:14:18 -0700 Subject: [PATCH] Removing `AlignConsecutiveAssignments: true`. (#3067) Also removing a commented-out line. --- .clang-format | 2 -- 1 file changed, 2 deletions(-) diff --git a/.clang-format b/.clang-format index 8700fca84..8e0fd8b01 100644 --- a/.clang-format +++ b/.clang-format @@ -3,7 +3,6 @@ # clang-format --style=llvm --dump-config BasedOnStyle: LLVM AccessModifierOffset: -4 -AlignConsecutiveAssignments: true AlwaysBreakTemplateDeclarations: Yes BinPackArguments: false BinPackParameters: false @@ -15,7 +14,6 @@ IndentPPDirectives: AfterHash IndentWidth: 4 Language: Cpp SpaceAfterCStyleCast: true -# SpaceInEmptyBlock: true # too new Standard: Cpp11 TabWidth: 4 ...