From 8a61ea7296f17428f062a840c560e08a5a2f72ea Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 19 Jan 2019 13:21:18 +1100 Subject: Cleanup: add trailing commas Prevents clang-format merging into a single line. --- source/blender/python/bmesh/bmesh_py_ops.c | 4 ++-- source/blender/python/bmesh/bmesh_py_types_meshdata.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/python/bmesh') diff --git a/source/blender/python/bmesh/bmesh_py_ops.c b/source/blender/python/bmesh/bmesh_py_ops.c index 49e71da3bc3..3a4437b2be6 100644 --- a/source/blender/python/bmesh/bmesh_py_ops.c +++ b/source/blender/python/bmesh/bmesh_py_ops.c @@ -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) diff --git a/source/blender/python/bmesh/bmesh_py_types_meshdata.c b/source/blender/python/bmesh/bmesh_py_types_meshdata.c index 2a0f3817f35..45092e854ed 100644 --- a/source/blender/python/bmesh/bmesh_py_types_meshdata.c +++ b/source/blender/python/bmesh/bmesh_py_types_meshdata.c @@ -334,7 +334,7 @@ static Mathutils_Callback mathutils_bmloopcol_cb = { mathutils_bmloopcol_get, mathutils_bmloopcol_set, mathutils_bmloopcol_get_index, - mathutils_bmloopcol_set_index + mathutils_bmloopcol_set_index, }; static void bm_init_types_bmloopcol(void) @@ -523,7 +523,7 @@ static PySequenceMethods bpy_bmdeformvert_as_sequence = { static PyMappingMethods bpy_bmdeformvert_as_mapping = { (lenfunc)bpy_bmdeformvert_len, (binaryfunc)bpy_bmdeformvert_subscript, - (objobjargproc)bpy_bmdeformvert_ass_subscript + (objobjargproc)bpy_bmdeformvert_ass_subscript, }; /* Methods -- cgit v1.2.3