Mod: redundant void 2

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

View File

@@ -44,7 +44,7 @@ using namespace Part;
extern const char* gce_ErrorStatusText(gce_ErrorType et);
// returns a string which represents the object e.g. when printed in python
std::string PlanePy::representation(void) const
std::string PlanePy::representation() const
{
return "<Plane object>";
}
@@ -167,7 +167,7 @@ int PlanePy::PyInit(PyObject* args, PyObject* kwds)
return -1;
}
Py::Object PlanePy::getPosition(void) const
Py::Object PlanePy::getPosition() const
{
Handle(Geom_Plane) this_surf = Handle(Geom_Plane)::DownCast
(this->getGeomPlanePtr()->handle());
@@ -207,7 +207,7 @@ void PlanePy::setPosition(Py::Object arg)
}
}
Py::Object PlanePy::getAxis(void) const
Py::Object PlanePy::getAxis() const
{
Handle(Geom_ElementarySurface) s = Handle(Geom_ElementarySurface)::DownCast
(getGeometryPtr()->handle());