191ac8d3aSPatrick Venture--- 291ac8d3aSPatrick VentureLanguage: Cpp 391ac8d3aSPatrick Venture# BasedOnStyle: LLVM 491ac8d3aSPatrick VentureAccessModifierOffset: -2 591ac8d3aSPatrick VentureAlignAfterOpenBracket: Align 691ac8d3aSPatrick VentureAlignConsecutiveAssignments: false 791ac8d3aSPatrick VentureAlignConsecutiveDeclarations: false 8a6c18f8dSGeorge LiuAlignEscapedNewlines: Right 991ac8d3aSPatrick VentureAlignOperands: true 1091ac8d3aSPatrick VentureAlignTrailingComments: true 1191ac8d3aSPatrick VentureAllowAllParametersOfDeclarationOnNextLine: true 1291ac8d3aSPatrick VentureAllowShortBlocksOnASingleLine: false 1391ac8d3aSPatrick VentureAllowShortCaseLabelsOnASingleLine: false 1491ac8d3aSPatrick VentureAllowShortFunctionsOnASingleLine: None 1591ac8d3aSPatrick VentureAllowShortIfStatementsOnASingleLine: false 1691ac8d3aSPatrick VentureAllowShortLoopsOnASingleLine: false 1791ac8d3aSPatrick VentureAlwaysBreakAfterReturnType: None 1891ac8d3aSPatrick VentureAlwaysBreakBeforeMultilineStrings: false 19a6c18f8dSGeorge LiuAlwaysBreakTemplateDeclarations: Yes 2091ac8d3aSPatrick VentureBinPackArguments: true 2191ac8d3aSPatrick VentureBinPackParameters: true 2291ac8d3aSPatrick VentureBraceWrapping: 23a6c18f8dSGeorge Liu AfterCaseLabel: true 2491ac8d3aSPatrick Venture AfterClass: true 2591ac8d3aSPatrick Venture AfterControlStatement: true 2691ac8d3aSPatrick Venture AfterEnum: true 2791ac8d3aSPatrick Venture AfterFunction: true 2891ac8d3aSPatrick Venture AfterNamespace: true 2991ac8d3aSPatrick Venture AfterObjCDeclaration: true 3091ac8d3aSPatrick Venture AfterStruct: true 3191ac8d3aSPatrick Venture AfterUnion: true 32a6c18f8dSGeorge Liu AfterExternBlock: true 3391ac8d3aSPatrick Venture BeforeCatch: true 3491ac8d3aSPatrick Venture BeforeElse: true 3591ac8d3aSPatrick Venture IndentBraces: false 36a6c18f8dSGeorge Liu SplitEmptyFunction: false 37a6c18f8dSGeorge Liu SplitEmptyRecord: false 38a6c18f8dSGeorge Liu SplitEmptyNamespace: false 3991ac8d3aSPatrick VentureBreakBeforeBinaryOperators: None 4091ac8d3aSPatrick VentureBreakBeforeBraces: Custom 4191ac8d3aSPatrick VentureBreakBeforeTernaryOperators: true 4291ac8d3aSPatrick VentureBreakConstructorInitializers: AfterColon 43a6c18f8dSGeorge LiuBreakInheritanceList: AfterColon 44d870d68aSGeorge LiuBreakStringLiterals: false 4591ac8d3aSPatrick VentureColumnLimit: 80 4691ac8d3aSPatrick VentureCommentPragmas: '^ IWYU pragma:' 47a6c18f8dSGeorge LiuCompactNamespaces: false 4891ac8d3aSPatrick VentureConstructorInitializerAllOnOneLineOrOnePerLine: false 4991ac8d3aSPatrick VentureConstructorInitializerIndentWidth: 4 5091ac8d3aSPatrick VentureContinuationIndentWidth: 4 5191ac8d3aSPatrick VentureCpp11BracedListStyle: true 5223d5408bSGeorge LiuDeriveLineEnding: false 5391ac8d3aSPatrick VentureDerivePointerAlignment: false 5491ac8d3aSPatrick VenturePointerAlignment: Left 5591ac8d3aSPatrick VentureDisableFormat: false 5691ac8d3aSPatrick VentureExperimentalAutoDetectBinPacking: false 5791ac8d3aSPatrick VentureFixNamespaceComments: true 5891ac8d3aSPatrick VentureForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] 5991ac8d3aSPatrick VentureIncludeBlocks: Regroup 6091ac8d3aSPatrick VentureIncludeCategories: 6191ac8d3aSPatrick Venture - Regex: '^[<"](gtest|gmock)' 62a6c18f8dSGeorge Liu Priority: 7 6391ac8d3aSPatrick Venture - Regex: '^"config.h"' 6491ac8d3aSPatrick Venture Priority: -1 65a6c18f8dSGeorge Liu - Regex: '^".*\.h"' 6691ac8d3aSPatrick Venture Priority: 1 67a6c18f8dSGeorge Liu - Regex: '^".*\.hpp"' 6891ac8d3aSPatrick Venture Priority: 2 69a6c18f8dSGeorge Liu - Regex: '^<.*\.h>' 7091ac8d3aSPatrick Venture Priority: 3 71a6c18f8dSGeorge Liu - Regex: '^<.*\.hpp>' 7291ac8d3aSPatrick Venture Priority: 4 73a6c18f8dSGeorge Liu - Regex: '^<.*' 74a6c18f8dSGeorge Liu Priority: 5 75a6c18f8dSGeorge Liu - Regex: '.*' 76a6c18f8dSGeorge Liu Priority: 6 7791ac8d3aSPatrick VentureIndentCaseLabels: true 7891ac8d3aSPatrick VentureIndentWidth: 4 7991ac8d3aSPatrick VentureIndentWrappedFunctionNames: true 80*65bf3d94SGeorge LiuKeepEmptyLinesAtTheStartOfBlocks: false 8191ac8d3aSPatrick VentureMacroBlockBegin: '' 8291ac8d3aSPatrick VentureMacroBlockEnd: '' 8391ac8d3aSPatrick VentureMaxEmptyLinesToKeep: 1 8491ac8d3aSPatrick VentureNamespaceIndentation: None 8591ac8d3aSPatrick VentureObjCBlockIndentWidth: 2 8691ac8d3aSPatrick VentureObjCSpaceAfterProperty: false 8791ac8d3aSPatrick VentureObjCSpaceBeforeProtocolList: true 8891ac8d3aSPatrick VenturePenaltyBreakBeforeFirstCallParameter: 19 8991ac8d3aSPatrick VenturePenaltyBreakComment: 300 9091ac8d3aSPatrick VenturePenaltyBreakFirstLessLess: 120 9191ac8d3aSPatrick VenturePenaltyBreakString: 1000 9291ac8d3aSPatrick VenturePenaltyExcessCharacter: 1000000 9391ac8d3aSPatrick VenturePenaltyReturnTypeOnItsOwnLine: 60 9491ac8d3aSPatrick VentureReflowComments: true 9591ac8d3aSPatrick VentureSortIncludes: true 9691ac8d3aSPatrick VentureSortUsingDeclarations: true 9791ac8d3aSPatrick VentureSpaceAfterCStyleCast: false 98a6c18f8dSGeorge LiuSpaceAfterTemplateKeyword: true 9991ac8d3aSPatrick VentureSpaceBeforeAssignmentOperators: true 100a6c18f8dSGeorge LiuSpaceBeforeCpp11BracedList: false 101a6c18f8dSGeorge LiuSpaceBeforeCtorInitializerColon: true 102a6c18f8dSGeorge LiuSpaceBeforeInheritanceColon: true 10391ac8d3aSPatrick VentureSpaceBeforeParens: ControlStatements 104a6c18f8dSGeorge LiuSpaceBeforeRangeBasedForLoopColon: true 10591ac8d3aSPatrick VentureSpaceInEmptyParentheses: false 10691ac8d3aSPatrick VentureSpacesBeforeTrailingComments: 1 10791ac8d3aSPatrick VentureSpacesInAngles: false 10891ac8d3aSPatrick VentureSpacesInContainerLiterals: true 10991ac8d3aSPatrick VentureSpacesInCStyleCastParentheses: false 11091ac8d3aSPatrick VentureSpacesInParentheses: false 11191ac8d3aSPatrick VentureSpacesInSquareBrackets: false 112a6c18f8dSGeorge LiuStandard: Latest 11391ac8d3aSPatrick VentureTabWidth: 4 11423d5408bSGeorge LiuUseCRLF: false 11591ac8d3aSPatrick VentureUseTab: Never 11691ac8d3aSPatrick Venture... 117