From 95ec728079520a097c715d094d209d815934d73f Mon Sep 17 00:00:00 2001 From: Stephen Shelton Date: Tue, 7 Apr 2020 12:11:09 -0600 Subject: [PATCH] More clang-format updates to parameter/argument lists --- .clang-format | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.clang-format b/.clang-format index 38336fa50..6752a5077 100644 --- a/.clang-format +++ b/.clang-format @@ -1,5 +1,5 @@ BasedOnStyle: Google -AlignAfterOpenBracket: Align +AlignAfterOpenBracket: AlwaysBreak AlignConsecutiveAssignments: 'false' AlignConsecutiveDeclarations: 'false' AlignEscapedNewlinesLeft: 'true' @@ -32,4 +32,5 @@ SortIncludes: false ColumnLimit: 100 # when wrapping function calls/declarations, force each parameter to have its own line -BinPackParameters: 'true' +BinPackParameters: 'false' +BinPackArguments: 'false'