2
2
Language : Cpp
3
3
# BasedOnStyle: LLVM
4
4
AccessModifierOffset : -1
5
- AlignAfterOpenBracket : Align
5
+ AlignAfterOpenBracket : AlwaysBreak
6
6
AlignConsecutiveMacros : false
7
7
AlignConsecutiveAssignments : false
8
8
AlignConsecutiveDeclarations : false
@@ -13,7 +13,7 @@ AllowAllArgumentsOnNextLine: true
13
13
AllowAllConstructorInitializersOnNextLine : true
14
14
AllowAllParametersOfDeclarationOnNextLine : true
15
15
AllowShortBlocksOnASingleLine : Never
16
- AllowShortCaseLabelsOnASingleLine : false
16
+ AllowShortCaseLabelsOnASingleLine : true
17
17
AllowShortFunctionsOnASingleLine : All
18
18
AllowShortLambdasOnASingleLine : All
19
19
AllowShortIfStatementsOnASingleLine : Never
@@ -22,8 +22,8 @@ AlwaysBreakAfterDefinitionReturnType: None
22
22
AlwaysBreakAfterReturnType : None
23
23
AlwaysBreakBeforeMultilineStrings : false
24
24
AlwaysBreakTemplateDeclarations : Yes
25
- BinPackArguments : true
26
- BinPackParameters : true
25
+ BinPackArguments : false
26
+ BinPackParameters : false
27
27
BraceWrapping :
28
28
AfterCaseLabel : false
29
29
AfterClass : false
@@ -41,13 +41,12 @@ BraceWrapping:
41
41
SplitEmptyFunction : true
42
42
SplitEmptyRecord : true
43
43
SplitEmptyNamespace : true
44
- BreakBeforeBinaryOperators : None
44
+ BreakBeforeBinaryOperators : NonAssignment
45
45
BreakBeforeBraces : Attach
46
46
BreakBeforeInheritanceComma : false
47
- BreakInheritanceList : BeforeColon
47
+ BreakInheritanceList : BeforeComma
48
48
BreakBeforeTernaryOperators : true
49
- BreakConstructorInitializersBeforeComma : false
50
- BreakConstructorInitializers : BeforeColon
49
+ BreakConstructorInitializers : BeforeComma
51
50
BreakAfterJavaFieldAnnotations : false
52
51
BreakStringLiterals : true
53
52
ColumnLimit : 80
@@ -79,7 +78,7 @@ IncludeCategories:
79
78
SortPriority : 0
80
79
IncludeIsMainRegex : ' (Test)?$'
81
80
IncludeIsMainSourceRegex : ' '
82
- IndentCaseLabels : false
81
+ IndentCaseLabels : true
83
82
IndentGotoLabels : true
84
83
IndentPPDirectives : None
85
84
IndentWidth : 4
@@ -111,7 +110,7 @@ SpaceAfterCStyleCast: false
111
110
SpaceAfterLogicalNot : false
112
111
SpaceAfterTemplateKeyword : true
113
112
SpaceBeforeAssignmentOperators : true
114
- SpaceBeforeCpp11BracedList : false
113
+ SpaceBeforeCpp11BracedList : true
115
114
SpaceBeforeCtorInitializerColon : true
116
115
SpaceBeforeInheritanceColon : true
117
116
SpaceBeforeParens : ControlStatements
0 commit comments