-
-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy path.clang-format
More file actions
40 lines (40 loc) · 855 Bytes
/
.clang-format
File metadata and controls
40 lines (40 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
Language: Cpp
BasedOnStyle: Google
ColumnLimit: 79
IndentWidth: 4
StatementAttributeLikeMacros:
# Defined in Include/pyport.h
- Py_DEPRECATED
- _Py_HOT_FUNCTION
- Py_ALWAYS_INLINE
- Py_NO_INLINE
- Py_ALIGNED
- Py_GCC_ATTRIBUTE
- _Py_NO_RETURN
- _Py_FALLTHROUGH
StatementMacros:
- PyObject_HEAD
- PyObject_VAR_HEAD
- PyException_HEAD
- _PyTZINFO_HEAD
- _PyDateTime_TIMEHEAD
- _PyDateTime_DATETIMEHEAD
- _PyGenObject_HEAD
- Window_NoArgNoReturnFunction
- Window_NoArgTrueFalseFunction
- Window_NoArgNoReturnVoidFunction
- Window_NoArg2TupleReturnFunction
- Window_OneArgNoReturnVoidFunction
- Window_OneArgNoReturnFunction
- Window_TwoArgNoReturnFunction
TabWidth: 4
UseTab: Never
WhitespaceSensitiveMacros:
- _Py_XSTRINGIFY
- Py_STRINGIFY
IndentExternBlock: NoIndent
AlwaysBreakAfterReturnType: All
BreakBeforeBraces: Linux
BinPackArguments: false
...