clang-format: update BreakBeforeBinaryOperators policy
Signed-off-by: Silvano Seva <silseva@fastwebnet.it>
This commit is contained in:
parent
c0d8984d09
commit
febcf8831d
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue