Skip to content

Commit 9bdf2df

Browse files
Initial commit
0 parents  commit 9bdf2df

File tree

12 files changed

+3617
-0
lines changed

12 files changed

+3617
-0
lines changed

.clang-format

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
BasedOnStyle: LLVM
2+
AccessModifierOffset: '-4'
3+
AlignAfterOpenBracket: Align
4+
AlignConsecutiveMacros: 'true'
5+
AlignConsecutiveAssignments: 'true'
6+
AlignConsecutiveDeclarations: 'true'
7+
AlignEscapedNewlines: Right
8+
AlignOperands: 'true'
9+
AlignTrailingComments: 'true'
10+
AllowAllArgumentsOnNextLine: 'true'
11+
AllowAllConstructorInitializersOnNextLine: 'true'
12+
AllowAllParametersOfDeclarationOnNextLine: 'true'
13+
AllowShortBlocksOnASingleLine: 'true'
14+
AllowShortCaseLabelsOnASingleLine: 'true'
15+
AllowShortFunctionsOnASingleLine: All
16+
AllowShortIfStatementsOnASingleLine: Always
17+
AllowShortLambdasOnASingleLine: All
18+
AlwaysBreakAfterReturnType: None
19+
AlwaysBreakTemplateDeclarations: 'Yes'
20+
BinPackArguments: 'false'
21+
BinPackParameters: 'false'
22+
BreakBeforeBinaryOperators: None
23+
BreakBeforeBraces: Custom
24+
BreakConstructorInitializers: BeforeColon
25+
BreakInheritanceList: BeforeColon
26+
ColumnLimit: '120'
27+
CompactNamespaces: 'false'
28+
ConstructorInitializerAllOnOneLineOrOnePerLine: 'true'
29+
ContinuationIndentWidth: '8'
30+
Cpp11BracedListStyle: 'true'
31+
IndentCaseLabels: 'true'
32+
IndentPPDirectives: AfterHash
33+
IndentWidth: '4'
34+
IndentWrappedFunctionNames: 'true'
35+
KeepEmptyLinesAtTheStartOfBlocks: 'false'
36+
Language: Cpp
37+
MaxEmptyLinesToKeep: '2'
38+
NamespaceIndentation: None
39+
PointerAlignment: Right
40+
SpaceBeforeCpp11BracedList: 'true'
41+
SpaceBeforeCtorInitializerColon: 'true'
42+
SpaceBeforeInheritanceColon: 'true'
43+
SpaceBeforeParens: ControlStatements
44+
SpaceBeforeRangeBasedForLoopColon: 'true'
45+
SpaceInEmptyParentheses: 'false'
46+
SpacesBeforeTrailingComments: '2'
47+
SpacesInAngles: 'false'
48+
SpacesInCStyleCastParentheses: 'false'
49+
Standard: Cpp11
50+
TabWidth: '4'
51+
UseTab: Never

0 commit comments

Comments
 (0)