1--- 2Language: Cpp 3# BasedOnStyle: LLVM 4AccessModifierOffset: -2 5AlignAfterOpenBracket: Align 6AlignConsecutiveAssignments: false 7AlignConsecutiveDeclarations: false 8AlignEscapedNewlinesLeft: false 9AlignOperands: true 10AlignTrailingComments: true 11AllowAllParametersOfDeclarationOnNextLine: true 12AllowShortBlocksOnASingleLine: false 13AllowShortCaseLabelsOnASingleLine: false 14AllowShortFunctionsOnASingleLine: None 15AllowShortIfStatementsOnASingleLine: false 16AllowShortLoopsOnASingleLine: false 17AlwaysBreakAfterDefinitionReturnType: None 18AlwaysBreakAfterReturnType: None 19AlwaysBreakBeforeMultilineStrings: false 20AlwaysBreakTemplateDeclarations: false 21BinPackArguments: true 22BinPackParameters: true 23BraceWrapping: 24 AfterCaseLabel: true 25 AfterClass: true 26 AfterControlStatement: true 27 AfterEnum: true 28 AfterFunction: true 29 AfterNamespace: true 30 AfterObjCDeclaration: true 31 AfterStruct: true 32 AfterUnion: true 33 BeforeCatch: true 34 BeforeElse: true 35 IndentBraces: false 36BreakBeforeBinaryOperators: None 37BreakBeforeBraces: Custom 38BreakBeforeTernaryOperators: true 39BreakConstructorInitializers: AfterColon 40ColumnLimit: 80 41CommentPragmas: '^ IWYU pragma:' 42ConstructorInitializerAllOnOneLineOrOnePerLine: false 43ConstructorInitializerIndentWidth: 4 44ContinuationIndentWidth: 4 45Cpp11BracedListStyle: true 46DerivePointerAlignment: true 47PointerAlignment: Left 48DisableFormat: false 49ExperimentalAutoDetectBinPacking: false 50FixNamespaceComments: true 51ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] 52IndentCaseLabels: true 53IndentWidth: 4 54IndentWrappedFunctionNames: true 55KeepEmptyLinesAtTheStartOfBlocks: true 56MacroBlockBegin: '' 57MacroBlockEnd: '' 58MaxEmptyLinesToKeep: 1 59NamespaceIndentation: None 60ObjCBlockIndentWidth: 2 61ObjCSpaceAfterProperty: false 62ObjCSpaceBeforeProtocolList: true 63PenaltyBreakBeforeFirstCallParameter: 19 64PenaltyBreakComment: 300 65PenaltyBreakFirstLessLess: 120 66PenaltyBreakString: 1000 67PenaltyExcessCharacter: 1000000 68PenaltyReturnTypeOnItsOwnLine: 60 69PointerAlignment: Right 70ReflowComments: true 71SortIncludes: false 72SpaceAfterCStyleCast: false 73SpaceBeforeAssignmentOperators: true 74SpaceBeforeParens: ControlStatements 75SpaceInEmptyParentheses: false 76SpacesBeforeTrailingComments: 1 77SpacesInAngles: false 78SpacesInContainerLiterals: true 79SpacesInCStyleCastParentheses: false 80SpacesInParentheses: false 81SpacesInSquareBrackets: false 82Standard: Cpp11 83TabWidth: 4 84UseTab: Never 85... 86