Cleanup: style, use braces in source/

Automated using clang-tidy.
This commit is contained in:
2019-05-31 22:51:19 +10:00
parent 8987f7987d
commit d8dbd49a2f
290 changed files with 4326 additions and 2162 deletions

View File

@@ -35,17 +35,20 @@ extern "C" {
int UnaryFunction0DVectorViewShape_Init(PyObject *module)
{
if (module == NULL)
if (module == NULL) {
return -1;
}
if (PyType_Ready(&UnaryFunction0DVectorViewShape_Type) < 0)
if (PyType_Ready(&UnaryFunction0DVectorViewShape_Type) < 0) {
return -1;
}
Py_INCREF(&UnaryFunction0DVectorViewShape_Type);
PyModule_AddObject(
module, "UnaryFunction0DVectorViewShape", (PyObject *)&UnaryFunction0DVectorViewShape_Type);
if (PyType_Ready(&GetOccludersF0D_Type) < 0)
if (PyType_Ready(&GetOccludersF0D_Type) < 0) {
return -1;
}
Py_INCREF(&GetOccludersF0D_Type);
PyModule_AddObject(module, "GetOccludersF0D", (PyObject *)&GetOccludersF0D_Type);
@@ -71,8 +74,9 @@ static int UnaryFunction0DVectorViewShape___init__(BPy_UnaryFunction0DVectorView
{
static const char *kwlist[] = {NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "", (char **)kwlist))
if (!PyArg_ParseTupleAndKeywords(args, kwds, "", (char **)kwlist)) {
return -1;
}
self->uf0D_vectorviewshape = new UnaryFunction0D<std::vector<ViewShape *>>();
self->uf0D_vectorviewshape->py_uf0D = (PyObject *)self;
return 0;
@@ -80,8 +84,9 @@ static int UnaryFunction0DVectorViewShape___init__(BPy_UnaryFunction0DVectorView
static void UnaryFunction0DVectorViewShape___dealloc__(BPy_UnaryFunction0DVectorViewShape *self)
{
if (self->uf0D_vectorviewshape)
if (self->uf0D_vectorviewshape) {
delete self->uf0D_vectorviewshape;
}
UnaryFunction0D_Type.tp_dealloc((PyObject *)self);
}
@@ -99,8 +104,9 @@ static PyObject *UnaryFunction0DVectorViewShape___call__(BPy_UnaryFunction0DVect
PyObject *obj;
if (!PyArg_ParseTupleAndKeywords(
args, kwds, "O!", (char **)kwlist, &Interface0DIterator_Type, &obj))
args, kwds, "O!", (char **)kwlist, &Interface0DIterator_Type, &obj)) {
return NULL;
}
if (typeid(*(self->uf0D_vectorviewshape)) == typeid(UnaryFunction0D<std::vector<ViewShape *>>)) {
PyErr_SetString(PyExc_TypeError, "__call__ method not properly overridden");