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

@@ -40,7 +40,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 ArcOfCirclePy::representation(void) const
std::string ArcOfCirclePy::representation() const
{
Handle(Geom_TrimmedCurve) trim = Handle(Geom_TrimmedCurve)::DownCast
(getGeomArcOfCirclePtr()->handle());
@@ -126,7 +126,7 @@ int ArcOfCirclePy::PyInit(PyObject* args, PyObject* /*kwds*/)
return -1;
}
Py::Float ArcOfCirclePy::getRadius(void) const
Py::Float ArcOfCirclePy::getRadius() const
{
return Py::Float(getGeomArcOfCirclePtr()->getRadius());
}
@@ -136,7 +136,7 @@ void ArcOfCirclePy::setRadius(Py::Float arg)
getGeomArcOfCirclePtr()->setRadius((double)arg);
}
Py::Object ArcOfCirclePy::getCircle(void) const
Py::Object ArcOfCirclePy::getCircle() const
{
Handle(Geom_TrimmedCurve) trim = Handle(Geom_TrimmedCurve)::DownCast
(getGeomArcOfCirclePtr()->handle());