1414db5a8SPatrick Venture---
2414db5a8SPatrick VentureLanguage:        Cpp
3414db5a8SPatrick Venture# BasedOnStyle:  LLVM
4414db5a8SPatrick VentureAccessModifierOffset: -2
5414db5a8SPatrick VentureAlignAfterOpenBracket: Align
6414db5a8SPatrick VentureAlignConsecutiveAssignments: false
7414db5a8SPatrick VentureAlignConsecutiveDeclarations: false
8*157063d0SPatrick WilliamsAlignEscapedNewlines: Right
9*157063d0SPatrick WilliamsAlignOperands:  Align
10*157063d0SPatrick WilliamsAlignTrailingComments:
11*157063d0SPatrick Williams  Kind: Always
12*157063d0SPatrick Williams  OverEmptyLines: 1
13414db5a8SPatrick VentureAllowAllParametersOfDeclarationOnNextLine: true
14*157063d0SPatrick WilliamsAllowShortBlocksOnASingleLine: Empty
15414db5a8SPatrick VentureAllowShortCaseLabelsOnASingleLine: false
16*157063d0SPatrick WilliamsAllowShortFunctionsOnASingleLine: Empty
17414db5a8SPatrick VentureAllowShortIfStatementsOnASingleLine: false
18414db5a8SPatrick VentureAllowShortLoopsOnASingleLine: false
19414db5a8SPatrick VentureAlwaysBreakAfterReturnType: None
20414db5a8SPatrick VentureAlwaysBreakBeforeMultilineStrings: false
21*157063d0SPatrick WilliamsAlwaysBreakTemplateDeclarations: Yes
22414db5a8SPatrick VentureBinPackArguments: true
23414db5a8SPatrick VentureBinPackParameters: true
24414db5a8SPatrick VentureBraceWrapping:
25*157063d0SPatrick Williams  AfterCaseLabel:  true
26414db5a8SPatrick Venture  AfterClass:      true
27414db5a8SPatrick Venture  AfterControlStatement: true
28414db5a8SPatrick Venture  AfterEnum:       true
29414db5a8SPatrick Venture  AfterFunction:   true
30414db5a8SPatrick Venture  AfterNamespace:  true
31414db5a8SPatrick Venture  AfterObjCDeclaration: true
32414db5a8SPatrick Venture  AfterStruct:     true
33414db5a8SPatrick Venture  AfterUnion:      true
34*157063d0SPatrick Williams  AfterExternBlock: true
35414db5a8SPatrick Venture  BeforeCatch:     true
36414db5a8SPatrick Venture  BeforeElse:      true
37414db5a8SPatrick Venture  IndentBraces:    false
38*157063d0SPatrick Williams  SplitEmptyFunction:   false
39*157063d0SPatrick Williams  SplitEmptyRecord:     false
40*157063d0SPatrick Williams  SplitEmptyNamespace:  false
41*157063d0SPatrick WilliamsBreakAfterAttributes: Never
42414db5a8SPatrick VentureBreakBeforeBinaryOperators: None
43414db5a8SPatrick VentureBreakBeforeBraces: Custom
44414db5a8SPatrick VentureBreakBeforeTernaryOperators: true
45414db5a8SPatrick VentureBreakConstructorInitializers: AfterColon
46*157063d0SPatrick WilliamsBreakInheritanceList: AfterColon
47*157063d0SPatrick WilliamsBreakStringLiterals: false
48414db5a8SPatrick VentureColumnLimit:     80
49414db5a8SPatrick VentureCommentPragmas:  '^ IWYU pragma:'
50*157063d0SPatrick WilliamsCompactNamespaces: false
51414db5a8SPatrick VentureConstructorInitializerAllOnOneLineOrOnePerLine: false
52414db5a8SPatrick VentureConstructorInitializerIndentWidth: 4
53414db5a8SPatrick VentureContinuationIndentWidth: 4
54414db5a8SPatrick VentureCpp11BracedListStyle: true
55*157063d0SPatrick WilliamsDeriveLineEnding: false
56414db5a8SPatrick VentureDerivePointerAlignment: false
57414db5a8SPatrick VenturePointerAlignment: Left
58414db5a8SPatrick VentureDisableFormat:   false
59414db5a8SPatrick VentureExperimentalAutoDetectBinPacking: false
60414db5a8SPatrick VentureFixNamespaceComments: true
61414db5a8SPatrick VentureForEachMacros:   [ foreach, Q_FOREACH, BOOST_FOREACH ]
62414db5a8SPatrick VentureIncludeBlocks: Regroup
63414db5a8SPatrick VentureIncludeCategories:
64414db5a8SPatrick Venture  - Regex:           '^[<"](gtest|gmock)'
65*157063d0SPatrick Williams    Priority:        7
66414db5a8SPatrick Venture  - Regex:           '^"config.h"'
67414db5a8SPatrick Venture    Priority:        -1
68*157063d0SPatrick Williams  - Regex:           '^".*\.h"'
69414db5a8SPatrick Venture    Priority:        1
70*157063d0SPatrick Williams  - Regex:           '^".*\.hpp"'
71414db5a8SPatrick Venture    Priority:        2
72*157063d0SPatrick Williams  - Regex:           '^<.*\.h>'
73414db5a8SPatrick Venture    Priority:        3
74*157063d0SPatrick Williams  - Regex:           '^<.*\.hpp>'
75414db5a8SPatrick Venture    Priority:        4
76*157063d0SPatrick Williams  - Regex:           '^<.*'
77*157063d0SPatrick Williams    Priority:        5
78*157063d0SPatrick Williams  - Regex:           '.*'
79*157063d0SPatrick Williams    Priority:        6
80414db5a8SPatrick VentureIndentCaseLabels: true
81*157063d0SPatrick WilliamsIndentRequiresClause: true
82414db5a8SPatrick VentureIndentWidth:     4
83414db5a8SPatrick VentureIndentWrappedFunctionNames: true
84*157063d0SPatrick WilliamsInsertNewlineAtEOF: true
85*157063d0SPatrick WilliamsKeepEmptyLinesAtTheStartOfBlocks: false
86*157063d0SPatrick WilliamsLambdaBodyIndentation: OuterScope
87*157063d0SPatrick WilliamsLineEnding: LF
88414db5a8SPatrick VentureMacroBlockBegin: ''
89414db5a8SPatrick VentureMacroBlockEnd:   ''
90414db5a8SPatrick VentureMaxEmptyLinesToKeep: 1
91414db5a8SPatrick VentureNamespaceIndentation: None
92414db5a8SPatrick VentureObjCBlockIndentWidth: 2
93414db5a8SPatrick VentureObjCSpaceAfterProperty: false
94414db5a8SPatrick VentureObjCSpaceBeforeProtocolList: true
95*157063d0SPatrick WilliamsPenaltyBreakAssignment: 25
96414db5a8SPatrick VenturePenaltyBreakBeforeFirstCallParameter: 19
97414db5a8SPatrick VenturePenaltyBreakComment: 300
98414db5a8SPatrick VenturePenaltyBreakFirstLessLess: 120
99414db5a8SPatrick VenturePenaltyBreakString: 1000
100414db5a8SPatrick VenturePenaltyExcessCharacter: 1000000
101414db5a8SPatrick VenturePenaltyReturnTypeOnItsOwnLine: 60
102*157063d0SPatrick WilliamsPenaltyIndentedWhitespace: 0
103*157063d0SPatrick WilliamsQualifierAlignment: Left
104*157063d0SPatrick WilliamsReferenceAlignment: Left
105414db5a8SPatrick VentureReflowComments:  true
106*157063d0SPatrick WilliamsRequiresClausePosition: OwnLine
107*157063d0SPatrick WilliamsRequiresExpressionIndentation: Keyword
108414db5a8SPatrick VentureSortIncludes:    true
109414db5a8SPatrick VentureSortUsingDeclarations: true
110414db5a8SPatrick VentureSpaceAfterCStyleCast: false
111*157063d0SPatrick WilliamsSpaceAfterTemplateKeyword: true
112414db5a8SPatrick VentureSpaceBeforeAssignmentOperators: true
113*157063d0SPatrick WilliamsSpaceBeforeCpp11BracedList: false
114*157063d0SPatrick WilliamsSpaceBeforeCtorInitializerColon: true
115*157063d0SPatrick WilliamsSpaceBeforeInheritanceColon: true
116414db5a8SPatrick VentureSpaceBeforeParens: ControlStatements
117*157063d0SPatrick WilliamsSpaceBeforeRangeBasedForLoopColon: true
118414db5a8SPatrick VentureSpaceInEmptyParentheses: false
119414db5a8SPatrick VentureSpacesBeforeTrailingComments: 1
120414db5a8SPatrick VentureSpacesInAngles:  false
121414db5a8SPatrick VentureSpacesInContainerLiterals: true
122414db5a8SPatrick VentureSpacesInCStyleCastParentheses: false
123414db5a8SPatrick VentureSpacesInParentheses: false
124414db5a8SPatrick VentureSpacesInSquareBrackets: false
125*157063d0SPatrick WilliamsStandard:        Latest
126414db5a8SPatrick VentureTabWidth:        4
127414db5a8SPatrick VentureUseTab:          Never
128414db5a8SPatrick Venture...
129414db5a8SPatrick Venture
130