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