Cleanup: remove redundant 'char *' casts

This commit is contained in:
2019-12-20 10:42:57 +11:00
parent 6ccef2aa7e
commit 9a9f39e466
73 changed files with 692 additions and 1002 deletions

View File

@@ -177,10 +177,10 @@ static int integration_type_set(BPy_UnaryFunction1DVoid *self,
}
static PyGetSetDef BPy_UnaryFunction1DVoid_getseters[] = {
{(char *)"integration_type",
{"integration_type",
(getter)integration_type_get,
(setter)integration_type_set,
(char *)integration_type_doc,
integration_type_doc,
NULL},
{NULL, NULL, NULL, NULL, NULL} /* Sentinel */
};