102261c0cSPatrick Venture---
202261c0cSPatrick VentureLanguage:        Cpp
302261c0cSPatrick Venture# BasedOnStyle:  LLVM
402261c0cSPatrick VentureAccessModifierOffset: -2
502261c0cSPatrick VentureAlignAfterOpenBracket: Align
602261c0cSPatrick VentureAlignConsecutiveAssignments: false
702261c0cSPatrick VentureAlignConsecutiveDeclarations: false
8490126f9SPatrick WilliamsAlignEscapedNewlines: Right
9490126f9SPatrick WilliamsAlignOperands:  Align
10490126f9SPatrick WilliamsAlignTrailingComments:
11490126f9SPatrick Williams  Kind: Always
12490126f9SPatrick Williams  OverEmptyLines: 1
1302261c0cSPatrick VentureAllowAllParametersOfDeclarationOnNextLine: true
14490126f9SPatrick WilliamsAllowShortBlocksOnASingleLine: Empty
1502261c0cSPatrick VentureAllowShortCaseLabelsOnASingleLine: false
16490126f9SPatrick WilliamsAllowShortFunctionsOnASingleLine: Empty
17ff1c872bSPatrick WilliamsAllowShortIfStatementsOnASingleLine: Never
18ff1c872bSPatrick WilliamsAllowShortLambdasOnASingleLine: true
1902261c0cSPatrick VentureAllowShortLoopsOnASingleLine: false
2002261c0cSPatrick VentureAlwaysBreakAfterReturnType: None
2102261c0cSPatrick VentureAlwaysBreakBeforeMultilineStrings: false
22490126f9SPatrick WilliamsAlwaysBreakTemplateDeclarations: Yes
2302261c0cSPatrick VentureBinPackArguments: true
2402261c0cSPatrick VentureBinPackParameters: true
25ff1c872bSPatrick WilliamsBitFieldColonSpacing: None
2602261c0cSPatrick VentureBraceWrapping:
27490126f9SPatrick Williams  AfterCaseLabel:  true
2802261c0cSPatrick Venture  AfterClass:      true
2902261c0cSPatrick Venture  AfterControlStatement: true
3002261c0cSPatrick Venture  AfterEnum:       true
31ff1c872bSPatrick Williams  AfterExternBlock: true
3202261c0cSPatrick Venture  AfterFunction:   true
3302261c0cSPatrick Venture  AfterNamespace:  true
3402261c0cSPatrick Venture  AfterObjCDeclaration: true
3502261c0cSPatrick Venture  AfterStruct:     true
3602261c0cSPatrick Venture  AfterUnion:      true
3702261c0cSPatrick Venture  BeforeCatch:     true
3802261c0cSPatrick Venture  BeforeElse:      true
39ff1c872bSPatrick Williams  BeforeLambdaBody: false
40ff1c872bSPatrick Williams  BeforeWhile:     false
4102261c0cSPatrick Venture  IndentBraces:    false
42490126f9SPatrick Williams  SplitEmptyFunction:   false
43490126f9SPatrick Williams  SplitEmptyRecord:     false
44490126f9SPatrick Williams  SplitEmptyNamespace:  false
45490126f9SPatrick WilliamsBreakAfterAttributes: Never
4602261c0cSPatrick VentureBreakBeforeBinaryOperators: None
4702261c0cSPatrick VentureBreakBeforeBraces: Custom
4802261c0cSPatrick VentureBreakBeforeTernaryOperators: true
4902261c0cSPatrick VentureBreakConstructorInitializers: AfterColon
50490126f9SPatrick WilliamsBreakInheritanceList: AfterColon
51490126f9SPatrick WilliamsBreakStringLiterals: false
5202261c0cSPatrick VentureColumnLimit:     80
5302261c0cSPatrick VentureCommentPragmas:  '^ IWYU pragma:'
54490126f9SPatrick WilliamsCompactNamespaces: false
5502261c0cSPatrick VentureConstructorInitializerIndentWidth: 4
5602261c0cSPatrick VentureContinuationIndentWidth: 4
5702261c0cSPatrick VentureCpp11BracedListStyle: true
5802261c0cSPatrick VentureDerivePointerAlignment: false
5902261c0cSPatrick VentureDisableFormat:   false
6002261c0cSPatrick VentureFixNamespaceComments: true
61ff1c872bSPatrick WilliamsForEachMacros:
62ff1c872bSPatrick Williams  - foreach
63ff1c872bSPatrick Williams  - Q_FOREACH
64ff1c872bSPatrick Williams  - BOOST_FOREACH
6502261c0cSPatrick VentureIncludeBlocks: Regroup
6602261c0cSPatrick VentureIncludeCategories:
6702261c0cSPatrick Venture  - Regex:           '^[<"](gtest|gmock)'
68490126f9SPatrick Williams    Priority:        7
6902261c0cSPatrick Venture  - Regex:           '^"config.h"'
7002261c0cSPatrick Venture    Priority:        -1
71490126f9SPatrick Williams  - Regex:           '^".*\.h"'
7202261c0cSPatrick Venture    Priority:        1
73490126f9SPatrick Williams  - Regex:           '^".*\.hpp"'
7402261c0cSPatrick Venture    Priority:        2
75490126f9SPatrick Williams  - Regex:           '^<.*\.h>'
7602261c0cSPatrick Venture    Priority:        3
77490126f9SPatrick Williams  - Regex:           '^<.*\.hpp>'
7802261c0cSPatrick Venture    Priority:        4
79490126f9SPatrick Williams  - Regex:           '^<.*'
80490126f9SPatrick Williams    Priority:        5
81490126f9SPatrick Williams  - Regex:           '.*'
82490126f9SPatrick Williams    Priority:        6
8302261c0cSPatrick VentureIndentCaseLabels: true
84ff1c872bSPatrick WilliamsIndentExternBlock: NoIndent
85490126f9SPatrick WilliamsIndentRequiresClause: true
8602261c0cSPatrick VentureIndentWidth:     4
8702261c0cSPatrick VentureIndentWrappedFunctionNames: true
88490126f9SPatrick WilliamsInsertNewlineAtEOF: true
89490126f9SPatrick WilliamsKeepEmptyLinesAtTheStartOfBlocks: false
90*d9c74acdSPatrick WilliamsLambdaBodyIndentation: Signature
91490126f9SPatrick WilliamsLineEnding: LF
9202261c0cSPatrick VentureMacroBlockBegin: ''
9302261c0cSPatrick VentureMacroBlockEnd:   ''
9402261c0cSPatrick VentureMaxEmptyLinesToKeep: 1
9502261c0cSPatrick VentureNamespaceIndentation: None
9602261c0cSPatrick VentureObjCBlockIndentWidth: 2
9702261c0cSPatrick VentureObjCSpaceAfterProperty: false
9802261c0cSPatrick VentureObjCSpaceBeforeProtocolList: true
99ff1c872bSPatrick WilliamsPackConstructorInitializers: BinPack
100490126f9SPatrick WilliamsPenaltyBreakAssignment: 25
101*d9c74acdSPatrick WilliamsPenaltyBreakBeforeFirstCallParameter: 50
10202261c0cSPatrick VenturePenaltyBreakComment: 300
10302261c0cSPatrick VenturePenaltyBreakFirstLessLess: 120
10402261c0cSPatrick VenturePenaltyBreakString: 1000
105*d9c74acdSPatrick WilliamsPenaltyBreakTemplateDeclaration: 10
10602261c0cSPatrick VenturePenaltyExcessCharacter: 1000000
10702261c0cSPatrick VenturePenaltyReturnTypeOnItsOwnLine: 60
108*d9c74acdSPatrick WilliamsPenaltyIndentedWhitespace: 1
109ff1c872bSPatrick WilliamsPointerAlignment: Left
110490126f9SPatrick WilliamsQualifierAlignment: Left
111490126f9SPatrick WilliamsReferenceAlignment: Left
11202261c0cSPatrick VentureReflowComments:  true
113490126f9SPatrick WilliamsRequiresClausePosition: OwnLine
114490126f9SPatrick WilliamsRequiresExpressionIndentation: Keyword
115ff1c872bSPatrick WilliamsSortIncludes: CaseSensitive
11602261c0cSPatrick VentureSortUsingDeclarations: true
11702261c0cSPatrick VentureSpaceAfterCStyleCast: false
118490126f9SPatrick WilliamsSpaceAfterTemplateKeyword: true
11902261c0cSPatrick VentureSpaceBeforeAssignmentOperators: true
120490126f9SPatrick WilliamsSpaceBeforeCpp11BracedList: false
121490126f9SPatrick WilliamsSpaceBeforeCtorInitializerColon: true
122490126f9SPatrick WilliamsSpaceBeforeInheritanceColon: true
12302261c0cSPatrick VentureSpaceBeforeParens: ControlStatements
124490126f9SPatrick WilliamsSpaceBeforeRangeBasedForLoopColon: true
12502261c0cSPatrick VentureSpaceInEmptyParentheses: false
12602261c0cSPatrick VentureSpacesBeforeTrailingComments: 1
127ff1c872bSPatrick WilliamsSpacesInAngles: Never
12802261c0cSPatrick VentureSpacesInContainerLiterals: true
12902261c0cSPatrick VentureSpacesInCStyleCastParentheses: false
13002261c0cSPatrick VentureSpacesInParentheses: false
13102261c0cSPatrick VentureSpacesInSquareBrackets: false
132490126f9SPatrick WilliamsStandard:        Latest
13302261c0cSPatrick VentureTabWidth:        4
13402261c0cSPatrick VentureUseTab:          Never
13502261c0cSPatrick Venture...
13602261c0cSPatrick Venture
137