133569758SPatrick Venture---
233569758SPatrick VentureLanguage:        Cpp
333569758SPatrick Venture# BasedOnStyle:  LLVM
433569758SPatrick VentureAccessModifierOffset: -2
533569758SPatrick VentureAlignAfterOpenBracket: Align
633569758SPatrick VentureAlignConsecutiveAssignments: false
733569758SPatrick VentureAlignConsecutiveDeclarations: false
8*0ea7357eSPatrick WilliamsAlignEscapedNewlines: Right
9*0ea7357eSPatrick WilliamsAlignOperands:  Align
10*0ea7357eSPatrick WilliamsAlignTrailingComments:
11*0ea7357eSPatrick Williams  Kind: Always
12*0ea7357eSPatrick Williams  OverEmptyLines: 1
1333569758SPatrick VentureAllowAllParametersOfDeclarationOnNextLine: true
14*0ea7357eSPatrick WilliamsAllowShortBlocksOnASingleLine: Empty
1533569758SPatrick VentureAllowShortCaseLabelsOnASingleLine: false
16*0ea7357eSPatrick WilliamsAllowShortFunctionsOnASingleLine: Empty
1733569758SPatrick VentureAllowShortIfStatementsOnASingleLine: false
1833569758SPatrick VentureAllowShortLoopsOnASingleLine: false
1933569758SPatrick VentureAlwaysBreakAfterReturnType: None
2033569758SPatrick VentureAlwaysBreakBeforeMultilineStrings: false
21*0ea7357eSPatrick WilliamsAlwaysBreakTemplateDeclarations: Yes
2233569758SPatrick VentureBinPackArguments: true
2333569758SPatrick VentureBinPackParameters: true
2433569758SPatrick VentureBraceWrapping:
25*0ea7357eSPatrick Williams  AfterCaseLabel:  true
2633569758SPatrick Venture  AfterClass:      true
2733569758SPatrick Venture  AfterControlStatement: true
2833569758SPatrick Venture  AfterEnum:       true
2933569758SPatrick Venture  AfterFunction:   true
3033569758SPatrick Venture  AfterNamespace:  true
3133569758SPatrick Venture  AfterObjCDeclaration: true
3233569758SPatrick Venture  AfterStruct:     true
3333569758SPatrick Venture  AfterUnion:      true
34*0ea7357eSPatrick Williams  AfterExternBlock: true
3533569758SPatrick Venture  BeforeCatch:     true
3633569758SPatrick Venture  BeforeElse:      true
3733569758SPatrick Venture  IndentBraces:    false
38*0ea7357eSPatrick Williams  SplitEmptyFunction:   false
39*0ea7357eSPatrick Williams  SplitEmptyRecord:     false
40*0ea7357eSPatrick Williams  SplitEmptyNamespace:  false
41*0ea7357eSPatrick WilliamsBreakAfterAttributes: Never
4233569758SPatrick VentureBreakBeforeBinaryOperators: None
4333569758SPatrick VentureBreakBeforeBraces: Custom
4433569758SPatrick VentureBreakBeforeTernaryOperators: true
4533569758SPatrick VentureBreakConstructorInitializers: AfterColon
46*0ea7357eSPatrick WilliamsBreakInheritanceList: AfterColon
47*0ea7357eSPatrick WilliamsBreakStringLiterals: false
4833569758SPatrick VentureColumnLimit:     80
4933569758SPatrick VentureCommentPragmas:  '^ IWYU pragma:'
50*0ea7357eSPatrick WilliamsCompactNamespaces: false
5133569758SPatrick VentureConstructorInitializerAllOnOneLineOrOnePerLine: false
5233569758SPatrick VentureConstructorInitializerIndentWidth: 4
5333569758SPatrick VentureContinuationIndentWidth: 4
5433569758SPatrick VentureCpp11BracedListStyle: true
55*0ea7357eSPatrick WilliamsDeriveLineEnding: false
56b5754fd4SPatrick VentureDerivePointerAlignment: false
5733569758SPatrick VenturePointerAlignment: Left
5833569758SPatrick VentureDisableFormat:   false
5933569758SPatrick VentureExperimentalAutoDetectBinPacking: false
6033569758SPatrick VentureFixNamespaceComments: true
6133569758SPatrick VentureForEachMacros:   [ foreach, Q_FOREACH, BOOST_FOREACH ]
62b5754fd4SPatrick VentureIncludeBlocks: Regroup
63b5754fd4SPatrick VentureIncludeCategories:
64b5754fd4SPatrick Venture  - Regex:           '^[<"](gtest|gmock)'
65*0ea7357eSPatrick Williams    Priority:        7
66b5754fd4SPatrick Venture  - Regex:           '^"config.h"'
67b5754fd4SPatrick Venture    Priority:        -1
68*0ea7357eSPatrick Williams  - Regex:           '^".*\.h"'
69b5754fd4SPatrick Venture    Priority:        1
70*0ea7357eSPatrick Williams  - Regex:           '^".*\.hpp"'
71b5754fd4SPatrick Venture    Priority:        2
72*0ea7357eSPatrick Williams  - Regex:           '^<.*\.h>'
73b5754fd4SPatrick Venture    Priority:        3
74*0ea7357eSPatrick Williams  - Regex:           '^<.*\.hpp>'
75b5754fd4SPatrick Venture    Priority:        4
76*0ea7357eSPatrick Williams  - Regex:           '^<.*'
77*0ea7357eSPatrick Williams    Priority:        5
78*0ea7357eSPatrick Williams  - Regex:           '.*'
79*0ea7357eSPatrick Williams    Priority:        6
8033569758SPatrick VentureIndentCaseLabels: true
81*0ea7357eSPatrick WilliamsIndentRequiresClause: true
8233569758SPatrick VentureIndentWidth:     4
83b5754fd4SPatrick VentureIndentWrappedFunctionNames: true
84*0ea7357eSPatrick WilliamsInsertNewlineAtEOF: true
85*0ea7357eSPatrick WilliamsKeepEmptyLinesAtTheStartOfBlocks: false
86*0ea7357eSPatrick WilliamsLambdaBodyIndentation: OuterScope
87*0ea7357eSPatrick WilliamsLineEnding: LF
8833569758SPatrick VentureMacroBlockBegin: ''
8933569758SPatrick VentureMacroBlockEnd:   ''
9033569758SPatrick VentureMaxEmptyLinesToKeep: 1
9133569758SPatrick VentureNamespaceIndentation: None
9233569758SPatrick VentureObjCBlockIndentWidth: 2
9333569758SPatrick VentureObjCSpaceAfterProperty: false
9433569758SPatrick VentureObjCSpaceBeforeProtocolList: true
95*0ea7357eSPatrick WilliamsPenaltyBreakAssignment: 25
9633569758SPatrick VenturePenaltyBreakBeforeFirstCallParameter: 19
9733569758SPatrick VenturePenaltyBreakComment: 300
9833569758SPatrick VenturePenaltyBreakFirstLessLess: 120
9933569758SPatrick VenturePenaltyBreakString: 1000
10033569758SPatrick VenturePenaltyExcessCharacter: 1000000
10133569758SPatrick VenturePenaltyReturnTypeOnItsOwnLine: 60
102*0ea7357eSPatrick WilliamsPenaltyIndentedWhitespace: 0
103*0ea7357eSPatrick WilliamsQualifierAlignment: Left
104*0ea7357eSPatrick WilliamsReferenceAlignment: Left
10533569758SPatrick VentureReflowComments:  true
106*0ea7357eSPatrick WilliamsRequiresClausePosition: OwnLine
107*0ea7357eSPatrick WilliamsRequiresExpressionIndentation: Keyword
108b5754fd4SPatrick VentureSortIncludes:    true
109b5754fd4SPatrick VentureSortUsingDeclarations: true
11033569758SPatrick VentureSpaceAfterCStyleCast: false
111*0ea7357eSPatrick WilliamsSpaceAfterTemplateKeyword: true
11233569758SPatrick VentureSpaceBeforeAssignmentOperators: true
113*0ea7357eSPatrick WilliamsSpaceBeforeCpp11BracedList: false
114*0ea7357eSPatrick WilliamsSpaceBeforeCtorInitializerColon: true
115*0ea7357eSPatrick WilliamsSpaceBeforeInheritanceColon: true
11633569758SPatrick VentureSpaceBeforeParens: ControlStatements
117*0ea7357eSPatrick WilliamsSpaceBeforeRangeBasedForLoopColon: true
11833569758SPatrick VentureSpaceInEmptyParentheses: false
11933569758SPatrick VentureSpacesBeforeTrailingComments: 1
12033569758SPatrick VentureSpacesInAngles:  false
12133569758SPatrick VentureSpacesInContainerLiterals: true
12233569758SPatrick VentureSpacesInCStyleCastParentheses: false
12333569758SPatrick VentureSpacesInParentheses: false
12433569758SPatrick VentureSpacesInSquareBrackets: false
125*0ea7357eSPatrick WilliamsStandard:        Latest
12633569758SPatrick VentureTabWidth:        4
12733569758SPatrick VentureUseTab:          Never
12833569758SPatrick Venture...
12933569758SPatrick Venture
130