1*02261c0cSPatrick Venture---
2*02261c0cSPatrick VentureLanguage:        Cpp
3*02261c0cSPatrick Venture# BasedOnStyle:  LLVM
4*02261c0cSPatrick VentureAccessModifierOffset: -2
5*02261c0cSPatrick VentureAlignAfterOpenBracket: Align
6*02261c0cSPatrick VentureAlignConsecutiveAssignments: false
7*02261c0cSPatrick VentureAlignConsecutiveDeclarations: false
8*02261c0cSPatrick VentureAlignEscapedNewlinesLeft: false
9*02261c0cSPatrick VentureAlignOperands:   true
10*02261c0cSPatrick VentureAlignTrailingComments: true
11*02261c0cSPatrick VentureAllowAllParametersOfDeclarationOnNextLine: true
12*02261c0cSPatrick VentureAllowShortBlocksOnASingleLine: false
13*02261c0cSPatrick VentureAllowShortCaseLabelsOnASingleLine: false
14*02261c0cSPatrick VentureAllowShortFunctionsOnASingleLine: None
15*02261c0cSPatrick VentureAllowShortIfStatementsOnASingleLine: false
16*02261c0cSPatrick VentureAllowShortLoopsOnASingleLine: false
17*02261c0cSPatrick VentureAlwaysBreakAfterDefinitionReturnType: None
18*02261c0cSPatrick VentureAlwaysBreakAfterReturnType: None
19*02261c0cSPatrick VentureAlwaysBreakBeforeMultilineStrings: false
20*02261c0cSPatrick VentureAlwaysBreakTemplateDeclarations: true
21*02261c0cSPatrick VentureBinPackArguments: true
22*02261c0cSPatrick VentureBinPackParameters: true
23*02261c0cSPatrick VentureBraceWrapping:
24*02261c0cSPatrick Venture  AfterClass:      true
25*02261c0cSPatrick Venture  AfterControlStatement: true
26*02261c0cSPatrick Venture  AfterEnum:       true
27*02261c0cSPatrick Venture  AfterFunction:   true
28*02261c0cSPatrick Venture  AfterNamespace:  true
29*02261c0cSPatrick Venture  AfterObjCDeclaration: true
30*02261c0cSPatrick Venture  AfterStruct:     true
31*02261c0cSPatrick Venture  AfterUnion:      true
32*02261c0cSPatrick Venture  BeforeCatch:     true
33*02261c0cSPatrick Venture  BeforeElse:      true
34*02261c0cSPatrick Venture  IndentBraces:    false
35*02261c0cSPatrick VentureBreakBeforeBinaryOperators: None
36*02261c0cSPatrick VentureBreakBeforeBraces: Custom
37*02261c0cSPatrick VentureBreakBeforeTernaryOperators: true
38*02261c0cSPatrick VentureBreakConstructorInitializers: AfterColon
39*02261c0cSPatrick VentureColumnLimit:     80
40*02261c0cSPatrick VentureCommentPragmas:  '^ IWYU pragma:'
41*02261c0cSPatrick VentureConstructorInitializerAllOnOneLineOrOnePerLine: false
42*02261c0cSPatrick VentureConstructorInitializerIndentWidth: 4
43*02261c0cSPatrick VentureContinuationIndentWidth: 4
44*02261c0cSPatrick VentureCpp11BracedListStyle: true
45*02261c0cSPatrick VentureDerivePointerAlignment: false
46*02261c0cSPatrick VenturePointerAlignment: Left
47*02261c0cSPatrick VentureDisableFormat:   false
48*02261c0cSPatrick VentureExperimentalAutoDetectBinPacking: false
49*02261c0cSPatrick VentureFixNamespaceComments: true
50*02261c0cSPatrick VentureForEachMacros:   [ foreach, Q_FOREACH, BOOST_FOREACH ]
51*02261c0cSPatrick VentureIncludeBlocks: Regroup
52*02261c0cSPatrick VentureIncludeCategories:
53*02261c0cSPatrick Venture  - Regex:           '^[<"](gtest|gmock)'
54*02261c0cSPatrick Venture    Priority:        5
55*02261c0cSPatrick Venture  - Regex:           '^"config.h"'
56*02261c0cSPatrick Venture    Priority:        -1
57*02261c0cSPatrick Venture  - Regex:           '^".*\.hpp"'
58*02261c0cSPatrick Venture    Priority:        1
59*02261c0cSPatrick Venture  - Regex:           '^<.*\.h>'
60*02261c0cSPatrick Venture    Priority:        2
61*02261c0cSPatrick Venture  - Regex:           '^<.*'
62*02261c0cSPatrick Venture    Priority:        3
63*02261c0cSPatrick Venture  - Regex:           '.*'
64*02261c0cSPatrick Venture    Priority:        4
65*02261c0cSPatrick VentureIndentCaseLabels: true
66*02261c0cSPatrick VentureIndentWidth:     4
67*02261c0cSPatrick VentureIndentWrappedFunctionNames: true
68*02261c0cSPatrick VentureKeepEmptyLinesAtTheStartOfBlocks: true
69*02261c0cSPatrick VentureMacroBlockBegin: ''
70*02261c0cSPatrick VentureMacroBlockEnd:   ''
71*02261c0cSPatrick VentureMaxEmptyLinesToKeep: 1
72*02261c0cSPatrick VentureNamespaceIndentation: None
73*02261c0cSPatrick VentureObjCBlockIndentWidth: 2
74*02261c0cSPatrick VentureObjCSpaceAfterProperty: false
75*02261c0cSPatrick VentureObjCSpaceBeforeProtocolList: true
76*02261c0cSPatrick VenturePenaltyBreakBeforeFirstCallParameter: 19
77*02261c0cSPatrick VenturePenaltyBreakComment: 300
78*02261c0cSPatrick VenturePenaltyBreakFirstLessLess: 120
79*02261c0cSPatrick VenturePenaltyBreakString: 1000
80*02261c0cSPatrick VenturePenaltyExcessCharacter: 1000000
81*02261c0cSPatrick VenturePenaltyReturnTypeOnItsOwnLine: 60
82*02261c0cSPatrick VentureReflowComments:  true
83*02261c0cSPatrick VentureSortIncludes:    true
84*02261c0cSPatrick VentureSortUsingDeclarations: true
85*02261c0cSPatrick VentureSpaceAfterCStyleCast: false
86*02261c0cSPatrick VentureSpaceBeforeAssignmentOperators: true
87*02261c0cSPatrick VentureSpaceBeforeParens: ControlStatements
88*02261c0cSPatrick VentureSpaceInEmptyParentheses: false
89*02261c0cSPatrick VentureSpacesBeforeTrailingComments: 1
90*02261c0cSPatrick VentureSpacesInAngles:  false
91*02261c0cSPatrick VentureSpacesInContainerLiterals: true
92*02261c0cSPatrick VentureSpacesInCStyleCastParentheses: false
93*02261c0cSPatrick VentureSpacesInParentheses: false
94*02261c0cSPatrick VentureSpacesInSquareBrackets: false
95*02261c0cSPatrick VentureStandard:        Cpp11
96*02261c0cSPatrick VentureTabWidth:        4
97*02261c0cSPatrick VentureUseTab:          Never
98*02261c0cSPatrick Venture...
99*02261c0cSPatrick Venture
100