Cleanup: remove redundant struct qualifiers

This commit is contained in:
Campbell Barton
2023-06-03 08:36:28 +10:00
parent b347346ca7
commit 74dd0ed09e
669 changed files with 3176 additions and 3528 deletions

View File

@@ -404,7 +404,7 @@ PyTypeObject PyKDTree_Type = {
/*tp_weaklistoffset*/ 0,
/*tp_iter*/ NULL,
/*tp_iternext*/ NULL,
/*tp_methods*/ (struct PyMethodDef *)PyKDTree_methods,
/*tp_methods*/ (PyMethodDef *)PyKDTree_methods,
/*tp_members*/ NULL,
/*tp_getset*/ NULL,
/*tp_base*/ NULL,
@@ -429,7 +429,7 @@ PyTypeObject PyKDTree_Type = {
};
PyDoc_STRVAR(py_kdtree_doc, "Generic 3-dimensional kd-tree to perform spatial searches.");
static struct PyModuleDef kdtree_moduledef = {
static PyModuleDef kdtree_moduledef = {
PyModuleDef_HEAD_INIT,
/*m_name*/ "mathutils.kdtree",
/*m_doc*/ py_kdtree_doc,