blob: df1588d8ded52e267746802b4b14bf004fd754ae [file] [log] [blame]
Colm Donelane40cc832021-03-02 10:30:34 +00001BasedOnStyle: LLVM
2AccessModifierOffset: -4
3AllowShortFunctionsOnASingleLine: None
4AlwaysBreakTemplateDeclarations: true
5BinPackParameters: false
6BraceWrapping:
7 AfterClass: true
8 AfterControlStatement: true
9 AfterEnum: true
10 AfterFunction: true
11 AfterNamespace: true
12 AfterObjCDeclaration: true
13 AfterStruct: true
14 AfterUnion: true
15 AfterExternBlock: false
16 BeforeCatch: true
17 BeforeElse: true
18 IndentBraces: false
19 SplitEmptyFunction: false
20 SplitEmptyRecord: false
21 SplitEmptyNamespace: true
22BreakBeforeBraces: Custom
23BreakConstructorInitializersBeforeComma: true
24BreakConstructorInitializers: BeforeColon
25Cpp11BracedListStyle: false
26IndentCaseLabels: true
27IndentWidth: 4
28IndentWrappedFunctionNames: true
29PointerAlignment: Left
30SpacesInContainerLiterals: false
31AlignConsecutiveAssignments: true
32ColumnLimit: 120
33ReflowComments: false
34SpacesBeforeTrailingComments: 4