Fem: Apply clang-format

This commit is contained in:
wmayer
2023-09-22 12:38:37 +02:00
committed by wwmayer
parent 0b0e6b5799
commit e66404523c
79 changed files with 3674 additions and 2787 deletions

View File

@@ -42,12 +42,11 @@ short FemSetElementsObject::mustExecute() const
return 0;
}
PyObject *FemSetElementsObject::getPyObject()
PyObject* FemSetElementsObject::getPyObject()
{
if (PythonObject.is(Py::_None())){
if (PythonObject.is(Py::_None())) {
// ref counter is set to 1
PythonObject = Py::Object(new DocumentObjectPy(this),true);
PythonObject = Py::Object(new DocumentObjectPy(this), true);
}
return Py::new_reference_to(PythonObject);
}