Cleanup: clang-format

This commit is contained in:
Campbell Barton
2020-11-10 09:42:03 +11:00
parent efd71aad4f
commit b5d310b569
149 changed files with 4843 additions and 4849 deletions

View File

@@ -167,10 +167,10 @@ static PyGetSetDef BPy_Id_getseters[] = {
/*-----------------------BPy_Id type definition ------------------------------*/
PyTypeObject Id_Type = {
PyVarObject_HEAD_INIT(nullptr, 0) "Id", /* tp_name */
sizeof(BPy_Id), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)Id_dealloc, /* tp_dealloc */
PyVarObject_HEAD_INIT(nullptr, 0) "Id", /* tp_name */
sizeof(BPy_Id), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)Id_dealloc, /* tp_dealloc */
/* Incompatible with Python3.8+ (deprecated function).
* NOLINTNEXTLINE: modernize-use-nullptr. */
0, /* tp_print */