Mod: redundant void 2

This commit is contained in:
berniev
2022-08-07 20:05:16 +10:00
committed by wwmayer
parent bfef3ed33a
commit f4ffd15864
805 changed files with 3787 additions and 3787 deletions

View File

@@ -47,7 +47,7 @@ FemSolverObject::~FemSolverObject()
{
}
short FemSolverObject::mustExecute(void) const
short FemSolverObject::mustExecute() const
{
return 0;
}
@@ -66,11 +66,11 @@ PyObject *FemSolverObject::getPyObject()
namespace App {
/// @cond DOXERR
PROPERTY_SOURCE_TEMPLATE(Fem::FemSolverObjectPython, Fem::FemSolverObject)
template<> const char* Fem::FemSolverObjectPython::getViewProviderName(void) const {
template<> const char* Fem::FemSolverObjectPython::getViewProviderName() const {
return "FemGui::ViewProviderSolverPython";
}
template<> PyObject* Fem::FemSolverObjectPython::getPyObject(void) {
template<> PyObject* Fem::FemSolverObjectPython::getPyObject() {
if (PythonObject.is(Py::_None())) {
// ref counter is set to 1
PythonObject = Py::Object(new App::FeaturePythonPyT<App::DocumentObjectPy>(this),true);