Mod: redundant void 2
This commit is contained in:
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user