1Language: Cpp 2# BasedOnStyle: LLVM 3ColumnLimit: 120 4SortIncludes: false 5TabWidth: 4 6IndentWidth: 4 7UseTab: Never 8AccessModifierOffset: -4 9ContinuationIndentWidth: 4 10IndentCaseBlocks: false 11IndentCaseLabels: false 12IndentGotoLabels: true 13IndentWrappedFunctionNames: false 14SortUsingDeclarations: false 15NamespaceIndentation: All 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 33AllowShortCaseLabelsOnASingleLine: false 34AllowShortEnumsOnASingleLine: true 35AllowShortFunctionsOnASingleLine: All 36AllowShortIfStatementsOnASingleLine: Never 37AllowShortLambdasOnASingleLine: All 38AllowShortLoopsOnASingleLine: false 39AlwaysBreakTemplateDeclarations: MultiLine 40BinPackArguments: true 41BinPackParameters: true 42BreakBeforeTernaryOperators: true 43BreakConstructorInitializers: BeforeColon 44BreakInheritanceList: BeforeColon 45BreakStringLiterals: true 46InsertBraces: false 47IndentExternBlock: NoIndent 48BreakBeforeBraces: Custom 49BraceWrapping: 50 AfterCaseLabel: false 51 AfterClass: false 52 AfterControlStatement: Never 53 AfterEnum: false 54 AfterFunction: false 55 AfterNamespace: false 56 AfterStruct: false 57 AfterUnion: false 58 AfterExternBlock: false 59 BeforeCatch: false 60 BeforeElse: false 61ReflowComments: true 62MaxEmptyLinesToKeep: 2