clang-format: update BreakBeforeBinaryOperators policy

Signed-off-by: Silvano Seva <silseva@fastwebnet.it>
This commit is contained in:
Silvano Seva 2025-09-28 17:15:48 +02:00
parent c0d8984d09
commit febcf8831d
1 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@
# Kind: Always # Kind: Always
# OverEmptyLines: 1 # OverEmptyLines: 1
# - Standard: c++14 # - Standard: c++14
# - BreakBeforeBinaryOperators: NonAssignment
# Original header below # Original header below
########################################################################## ##########################################################################
# SPDX-License-Identifier: GPL-2.0 # SPDX-License-Identifier: GPL-2.0
@ -60,7 +61,7 @@ BraceWrapping:
SplitEmptyFunction: true SplitEmptyFunction: true
SplitEmptyRecord: true SplitEmptyRecord: true
SplitEmptyNamespace: true SplitEmptyNamespace: true
BreakBeforeBinaryOperators: None BreakBeforeBinaryOperators: NonAssignment
BreakBeforeBraces: Custom BreakBeforeBraces: Custom
BreakBeforeInheritanceComma: false BreakBeforeInheritanceComma: false
BreakBeforeTernaryOperators: false BreakBeforeTernaryOperators: false