From 9afa78de7a9b48b5cf05f95fc0b7258bc59d7494 Mon Sep 17 00:00:00 2001 From: Mark Stapp Date: Mon, 6 Dec 2021 10:50:43 -0500 Subject: [PATCH] tools: clang-format break after operators Break after binary operators, rather than before. Signed-off-by: Mark Stapp --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index e1897bfa99..c84a29f861 100644 --- a/.clang-format +++ b/.clang-format @@ -15,7 +15,7 @@ AllowAllParametersOfDeclarationOnNextLine: false AlignAfterOpenBracket: true SpaceAfterCStyleCast: false MaxEmptyLinesToKeep: 2 -BreakBeforeBinaryOperators: NonAssignment +BreakBeforeBinaryOperators: None BreakStringLiterals: false SortIncludes: false IncludeCategories: -- 2.39.5