nat: use correct data types for memory sizes
[vpp.git] / .clang-format
1 ---
2 AlignEscapedNewlinesLeft: true
3 AlignTrailingComments: true
4 AllowAllParametersOfDeclarationOnNextLine: true
5 AllowShortIfStatementsOnASingleLine: false
6 AllowShortLoopsOnASingleLine: false
7 AllowShortFunctionsOnASingleLine: false
8 AlwaysBreakBeforeMultilineStrings: false
9 BreakBeforeBinaryOperators: false
10 BreakBeforeTernaryOperators: true
11 BinPackParameters: true
12 BreakBeforeBraces: GNU
13 ColumnLimit:     79
14 IndentCaseLabels: false
15 MaxEmptyLinesToKeep: 1
16 PenaltyBreakBeforeFirstCallParameter: 19
17 PenaltyBreakComment: 60
18 PenaltyBreakString: 1000
19 PenaltyBreakFirstLessLess: 120
20 PenaltyExcessCharacter: 1000000
21 PenaltyReturnTypeOnItsOwnLine: 60
22 PointerBindsToType: false
23 SpaceBeforeAssignmentOperators: true
24 SpaceBeforeParens: Always
25 SpacesBeforeTrailingComments: 1
26 SpacesInParentheses: false
27 SpaceInEmptyParentheses: false
28 SpacesInCStyleCastParentheses: false
29 SpaceAfterControlStatementKeyword: true
30 Cpp11BracedListStyle: true
31 Standard:        Cpp11
32 SortIncludes: false
33 IndentWidth:     2
34 TabWidth:        4
35 UseTab:          Never
36 IndentFunctionDeclarationAfterType: false
37 ContinuationIndentWidth: 4
38 ...