1--- 2Language: Cpp 3# BasedOnStyle: LLVM 4AccessModifierOffset: -2 5AlignAfterOpenBracket: true 6AlignConsecutiveAssignments: false 7AlignEscapedNewlinesLeft: false 8AlignOperands: true 9AlignTrailingComments: true 10AllowAllParametersOfDeclarationOnNextLine: true 11AllowShortBlocksOnASingleLine: false 12AllowShortCaseLabelsOnASingleLine: false 13AllowShortFunctionsOnASingleLine: All 14AllowShortIfStatementsOnASingleLine: false 15AllowShortLoopsOnASingleLine: false 16AlwaysBreakAfterDefinitionReturnType: None 17AlwaysBreakBeforeMultilineStrings: false 18AlwaysBreakTemplateDeclarations: false 19BinPackArguments: true 20BinPackParameters: true 21BreakBeforeBinaryOperators: None 22BreakBeforeBraces: Allman 23BreakBeforeTernaryOperators: true 24BreakConstructorInitializersBeforeComma: false 25ColumnLimit: 80 26CommentPragmas: '^ IWYU pragma:' 27ConstructorInitializerAllOnOneLineOrOnePerLine: false 28ConstructorInitializerIndentWidth: 4 29ContinuationIndentWidth: 4 30Cpp11BracedListStyle: true 31DerivePointerAlignment: false 32DisableFormat: false 33ExperimentalAutoDetectBinPacking: false 34ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] 35IndentCaseLabels: false 36IndentWidth: 4 37IndentWrappedFunctionNames: false 38KeepEmptyLinesAtTheStartOfBlocks: true 39MacroBlockBegin: '' 40MacroBlockEnd: '' 41MaxEmptyLinesToKeep: 1 42NamespaceIndentation: None 43ObjCBlockIndentWidth: 2 44ObjCSpaceAfterProperty: false 45ObjCSpaceBeforeProtocolList: true 46PenaltyBreakBeforeFirstCallParameter: 19 47PenaltyBreakComment: 300 48PenaltyBreakFirstLessLess: 120 49PenaltyBreakString: 1000 50PenaltyExcessCharacter: 1000000 51PenaltyReturnTypeOnItsOwnLine: 60 52PointerAlignment: Right 53SpaceAfterCStyleCast: false 54SpaceBeforeAssignmentOperators: true 55SpaceBeforeParens: ControlStatements 56SpaceInEmptyParentheses: false 57SpacesBeforeTrailingComments: 1 58SpacesInAngles: false 59SpacesInContainerLiterals: true 60SpacesInCStyleCastParentheses: false 61SpacesInParentheses: false 62SpacesInSquareBrackets: false 63Standard: Cpp11 64TabWidth: 8 65UseTab: Never 66... 67 68