102261c0cSPatrick Venture--- 202261c0cSPatrick VentureLanguage: Cpp 302261c0cSPatrick Venture# BasedOnStyle: LLVM 402261c0cSPatrick VentureAccessModifierOffset: -2 502261c0cSPatrick VentureAlignAfterOpenBracket: Align 602261c0cSPatrick VentureAlignConsecutiveAssignments: false 702261c0cSPatrick VentureAlignConsecutiveDeclarations: false 8*490126f9SPatrick WilliamsAlignEscapedNewlines: Right 9*490126f9SPatrick WilliamsAlignOperands: Align 10*490126f9SPatrick WilliamsAlignTrailingComments: 11*490126f9SPatrick Williams Kind: Always 12*490126f9SPatrick Williams OverEmptyLines: 1 1302261c0cSPatrick VentureAllowAllParametersOfDeclarationOnNextLine: true 14*490126f9SPatrick WilliamsAllowShortBlocksOnASingleLine: Empty 1502261c0cSPatrick VentureAllowShortCaseLabelsOnASingleLine: false 16*490126f9SPatrick WilliamsAllowShortFunctionsOnASingleLine: Empty 1702261c0cSPatrick VentureAllowShortIfStatementsOnASingleLine: false 1802261c0cSPatrick VentureAllowShortLoopsOnASingleLine: false 1902261c0cSPatrick VentureAlwaysBreakAfterReturnType: None 2002261c0cSPatrick VentureAlwaysBreakBeforeMultilineStrings: false 21*490126f9SPatrick WilliamsAlwaysBreakTemplateDeclarations: Yes 2202261c0cSPatrick VentureBinPackArguments: true 2302261c0cSPatrick VentureBinPackParameters: true 2402261c0cSPatrick VentureBraceWrapping: 25*490126f9SPatrick Williams AfterCaseLabel: true 2602261c0cSPatrick Venture AfterClass: true 2702261c0cSPatrick Venture AfterControlStatement: true 2802261c0cSPatrick Venture AfterEnum: true 2902261c0cSPatrick Venture AfterFunction: true 3002261c0cSPatrick Venture AfterNamespace: true 3102261c0cSPatrick Venture AfterObjCDeclaration: true 3202261c0cSPatrick Venture AfterStruct: true 3302261c0cSPatrick Venture AfterUnion: true 34*490126f9SPatrick Williams AfterExternBlock: true 3502261c0cSPatrick Venture BeforeCatch: true 3602261c0cSPatrick Venture BeforeElse: true 3702261c0cSPatrick Venture IndentBraces: false 38*490126f9SPatrick Williams SplitEmptyFunction: false 39*490126f9SPatrick Williams SplitEmptyRecord: false 40*490126f9SPatrick Williams SplitEmptyNamespace: false 41*490126f9SPatrick WilliamsBreakAfterAttributes: Never 4202261c0cSPatrick VentureBreakBeforeBinaryOperators: None 4302261c0cSPatrick VentureBreakBeforeBraces: Custom 4402261c0cSPatrick VentureBreakBeforeTernaryOperators: true 4502261c0cSPatrick VentureBreakConstructorInitializers: AfterColon 46*490126f9SPatrick WilliamsBreakInheritanceList: AfterColon 47*490126f9SPatrick WilliamsBreakStringLiterals: false 4802261c0cSPatrick VentureColumnLimit: 80 4902261c0cSPatrick VentureCommentPragmas: '^ IWYU pragma:' 50*490126f9SPatrick WilliamsCompactNamespaces: false 5102261c0cSPatrick VentureConstructorInitializerAllOnOneLineOrOnePerLine: false 5202261c0cSPatrick VentureConstructorInitializerIndentWidth: 4 5302261c0cSPatrick VentureContinuationIndentWidth: 4 5402261c0cSPatrick VentureCpp11BracedListStyle: true 55*490126f9SPatrick WilliamsDeriveLineEnding: false 5602261c0cSPatrick VentureDerivePointerAlignment: false 5702261c0cSPatrick VenturePointerAlignment: Left 5802261c0cSPatrick VentureDisableFormat: false 5902261c0cSPatrick VentureExperimentalAutoDetectBinPacking: false 6002261c0cSPatrick VentureFixNamespaceComments: true 6102261c0cSPatrick VentureForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] 6202261c0cSPatrick VentureIncludeBlocks: Regroup 6302261c0cSPatrick VentureIncludeCategories: 6402261c0cSPatrick Venture - Regex: '^[<"](gtest|gmock)' 65*490126f9SPatrick Williams Priority: 7 6602261c0cSPatrick Venture - Regex: '^"config.h"' 6702261c0cSPatrick Venture Priority: -1 68*490126f9SPatrick Williams - Regex: '^".*\.h"' 6902261c0cSPatrick Venture Priority: 1 70*490126f9SPatrick Williams - Regex: '^".*\.hpp"' 7102261c0cSPatrick Venture Priority: 2 72*490126f9SPatrick Williams - Regex: '^<.*\.h>' 7302261c0cSPatrick Venture Priority: 3 74*490126f9SPatrick Williams - Regex: '^<.*\.hpp>' 7502261c0cSPatrick Venture Priority: 4 76*490126f9SPatrick Williams - Regex: '^<.*' 77*490126f9SPatrick Williams Priority: 5 78*490126f9SPatrick Williams - Regex: '.*' 79*490126f9SPatrick Williams Priority: 6 8002261c0cSPatrick VentureIndentCaseLabels: true 81*490126f9SPatrick WilliamsIndentRequiresClause: true 8202261c0cSPatrick VentureIndentWidth: 4 8302261c0cSPatrick VentureIndentWrappedFunctionNames: true 84*490126f9SPatrick WilliamsInsertNewlineAtEOF: true 85*490126f9SPatrick WilliamsKeepEmptyLinesAtTheStartOfBlocks: false 86*490126f9SPatrick WilliamsLambdaBodyIndentation: OuterScope 87*490126f9SPatrick WilliamsLineEnding: LF 8802261c0cSPatrick VentureMacroBlockBegin: '' 8902261c0cSPatrick VentureMacroBlockEnd: '' 9002261c0cSPatrick VentureMaxEmptyLinesToKeep: 1 9102261c0cSPatrick VentureNamespaceIndentation: None 9202261c0cSPatrick VentureObjCBlockIndentWidth: 2 9302261c0cSPatrick VentureObjCSpaceAfterProperty: false 9402261c0cSPatrick VentureObjCSpaceBeforeProtocolList: true 95*490126f9SPatrick WilliamsPenaltyBreakAssignment: 25 9602261c0cSPatrick VenturePenaltyBreakBeforeFirstCallParameter: 19 9702261c0cSPatrick VenturePenaltyBreakComment: 300 9802261c0cSPatrick VenturePenaltyBreakFirstLessLess: 120 9902261c0cSPatrick VenturePenaltyBreakString: 1000 10002261c0cSPatrick VenturePenaltyExcessCharacter: 1000000 10102261c0cSPatrick VenturePenaltyReturnTypeOnItsOwnLine: 60 102*490126f9SPatrick WilliamsPenaltyIndentedWhitespace: 0 103*490126f9SPatrick WilliamsQualifierAlignment: Left 104*490126f9SPatrick WilliamsReferenceAlignment: Left 10502261c0cSPatrick VentureReflowComments: true 106*490126f9SPatrick WilliamsRequiresClausePosition: OwnLine 107*490126f9SPatrick WilliamsRequiresExpressionIndentation: Keyword 10802261c0cSPatrick VentureSortIncludes: true 10902261c0cSPatrick VentureSortUsingDeclarations: true 11002261c0cSPatrick VentureSpaceAfterCStyleCast: false 111*490126f9SPatrick WilliamsSpaceAfterTemplateKeyword: true 11202261c0cSPatrick VentureSpaceBeforeAssignmentOperators: true 113*490126f9SPatrick WilliamsSpaceBeforeCpp11BracedList: false 114*490126f9SPatrick WilliamsSpaceBeforeCtorInitializerColon: true 115*490126f9SPatrick WilliamsSpaceBeforeInheritanceColon: true 11602261c0cSPatrick VentureSpaceBeforeParens: ControlStatements 117*490126f9SPatrick WilliamsSpaceBeforeRangeBasedForLoopColon: true 11802261c0cSPatrick VentureSpaceInEmptyParentheses: false 11902261c0cSPatrick VentureSpacesBeforeTrailingComments: 1 12002261c0cSPatrick VentureSpacesInAngles: false 12102261c0cSPatrick VentureSpacesInContainerLiterals: true 12202261c0cSPatrick VentureSpacesInCStyleCastParentheses: false 12302261c0cSPatrick VentureSpacesInParentheses: false 12402261c0cSPatrick VentureSpacesInSquareBrackets: false 125*490126f9SPatrick WilliamsStandard: Latest 12602261c0cSPatrick VentureTabWidth: 4 12702261c0cSPatrick VentureUseTab: Never 12802261c0cSPatrick Venture... 12902261c0cSPatrick Venture 130