From 05417a47ce0ec2e65b4bea5bde82c383a3fdf0c8 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Fri, 2 Jul 2021 15:21:51 -0700 Subject: [PATCH] Removing `AlignConsecutiveAssignments: true`. (#3067) (#3065) 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 ...