fix warnings

This commit is contained in:
wmayer 2016-12-04 17:04:48 +01:00
parent b845bc7e41
commit 6cde253f67
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ PyObject *ArcOfConicPy::PyMake(struct _typeobject *, PyObject *, PyObject *) //
}
// constructor method
int ArcOfConicPy::PyInit(PyObject* args, PyObject* /*kwds*/)
int ArcOfConicPy::PyInit(PyObject* /*args*/, PyObject* /*kwds*/)
{
return -1;
}

View File

@ -87,7 +87,7 @@ int Curve2dPy::PyInit(PyObject* /*args*/, PyObject* /*kwd*/)
return 0;
}
PyObject* Curve2dPy::reverse(PyObject *args)
PyObject* Curve2dPy::reverse(PyObject * /*args*/)
{
try {
Handle_Geom2d_Curve curve = Handle_Geom2d_Curve::DownCast(getGeom2dCurvePtr()->handle());