Cleanup: add trailing commas

Prevents clang-format merging into a single line.
This commit is contained in:
2019-01-19 13:21:18 +11:00
parent c59370bf64
commit 8a61ea7296
40 changed files with 73 additions and 73 deletions

View File

@@ -232,7 +232,7 @@ static PyTypeObject bmesh_op_Type = {
NULL, /* PyObject *tp_cache; */
NULL, /* PyObject *tp_subclasses; */
NULL, /* PyObject *tp_weaklist; */
NULL
NULL,
};
@@ -350,7 +350,7 @@ static PyTypeObject bmesh_ops_fakemod_Type = {
NULL, /* PyObject *tp_cache; */
NULL, /* PyObject *tp_subclasses; */
NULL, /* PyObject *tp_weaklist; */
NULL
NULL,
};
PyObject *BPyInit_bmesh_ops(void)