fix warning :unused variables

This commit is contained in:
andrea
2022-07-11 19:20:46 +02:00
committed by Uwe
parent 61a5551940
commit 187772de7c

View File

@@ -709,13 +709,13 @@ PyObject* DocumentObjectPy::getPathsByOutList(PyObject *args)
throw Py::RuntimeError(e.what());
}
}
//remove
PyObject *DocumentObjectPy::getCustomAttributes(const char* attr) const
PyObject *DocumentObjectPy::getCustomAttributes(const char* ) const
{
return nullptr;
}
//remove
int DocumentObjectPy::setCustomAttributes(const char* attr, PyObject *obj)
int DocumentObjectPy::setCustomAttributes(const char* , PyObject *)
{
return 0;
}