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

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