mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-16 21:12:27 +00:00
clang-format: constructor member initiailizer list breaks with trailing colon/commas
Compare before / after:
A() B() :
: a(0) a(0),
, b(1) b(1)
This commit is contained in:
parent
1aa9e01419
commit
730ac5e3e9
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ AlwaysBreakTemplateDeclarations: Yes
|
||||||
BinPackArguments: false
|
BinPackArguments: false
|
||||||
BinPackParameters: false
|
BinPackParameters: false
|
||||||
BreakBeforeBraces: Allman # Always break before braces, to match existing SRB2 code
|
BreakBeforeBraces: Allman # Always break before braces, to match existing SRB2 code
|
||||||
BreakConstructorInitializers: BeforeComma
|
BreakConstructorInitializers: AfterColon
|
||||||
CompactNamespaces: true
|
CompactNamespaces: true
|
||||||
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
||||||
Cpp11BracedListStyle: true
|
Cpp11BracedListStyle: true
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue