1Language: Cpp 2# BasedOnStyle: LLVM 3ColumnLimit: 120 4SortIncludes: CaseSensitive 5TabWidth: 4 6IndentWidth: 4 7UseTab: Never 8AccessModifierOffset: -4 9ContinuationIndentWidth: 4 10IndentCaseBlocks: false 11IndentCaseLabels: false 12IndentGotoLabels: true 13IndentWrappedFunctionNames: false 14SortUsingDeclarations: false 15NamespaceIndentation: None 16SpaceAfterCStyleCast: false 17SpaceAfterLogicalNot: false 18SpaceAfterTemplateKeyword: true 19SpaceBeforeAssignmentOperators: true 20SpaceBeforeCaseColon: false 21SpaceBeforeCpp11BracedList: false 22SpaceBeforeCtorInitializerColon: true 23SpaceBeforeInheritanceColon: true 24SpaceBeforeRangeBasedForLoopColon: true 25SpaceBeforeSquareBrackets: false 26SpaceInEmptyBlock: false 27SpaceInEmptyParentheses: false 28SpacesInAngles: false 29SpacesInCStyleCastParentheses: false 30SpacesInConditionalStatement: false 31SpacesInParentheses: false 32SpacesInSquareBrackets: false 33AlignTrailingComments: true 34AlignAfterOpenBracket: true 35AllowShortCaseLabelsOnASingleLine: false 36AllowShortEnumsOnASingleLine: true 37AllowShortFunctionsOnASingleLine: All 38AllowShortIfStatementsOnASingleLine: Never 39AllowShortLambdasOnASingleLine: All 40AllowShortLoopsOnASingleLine: false 41AlwaysBreakTemplateDeclarations: MultiLine 42BinPackArguments: true 43BinPackParameters: true 44BreakBeforeTernaryOperators: true 45BreakConstructorInitializers: BeforeColon 46BreakInheritanceList: BeforeColon 47BreakStringLiterals: true 48InsertBraces: false 49IndentExternBlock: NoIndent 50BreakBeforeBraces: Custom 51BraceWrapping: 52 AfterCaseLabel: false 53 AfterClass: false 54 AfterControlStatement: Never 55 AfterEnum: false 56 AfterFunction: false 57 AfterNamespace: false 58 AfterStruct: false 59 AfterUnion: false 60 AfterExternBlock: false 61 BeforeCatch: false 62 BeforeElse: false 63ReflowComments: true 64MaxEmptyLinesToKeep: 2