From febcf8831dc0b211cf2f76711b1bf6dc94f10e98 Mon Sep 17 00:00:00 2001 From: Silvano Seva Date: Sun, 28 Sep 2025 17:15:48 +0200 Subject: [PATCH] clang-format: update BreakBeforeBinaryOperators policy Signed-off-by: Silvano Seva --- .clang-format | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 0e4fa2af..1aeabd91 100644 --- a/.clang-format +++ b/.clang-format @@ -9,6 +9,7 @@ # Kind: Always # OverEmptyLines: 1 # - Standard: c++14 +# - BreakBeforeBinaryOperators: NonAssignment # Original header below ########################################################################## # SPDX-License-Identifier: GPL-2.0 @@ -60,7 +61,7 @@ BraceWrapping: SplitEmptyFunction: true SplitEmptyRecord: true SplitEmptyNamespace: true -BreakBeforeBinaryOperators: None +BreakBeforeBinaryOperators: NonAssignment BreakBeforeBraces: Custom BreakBeforeInheritanceComma: false BreakBeforeTernaryOperators: false