From dc34a04d1e549d76f5f7002941e7baf58db879cb Mon Sep 17 00:00:00 2001 From: andrea Date: Mon, 11 Jul 2022 19:20:46 +0200 Subject: [PATCH] fix warning :unused variables --- src/App/DocumentObjectPyImp.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/App/DocumentObjectPyImp.cpp b/src/App/DocumentObjectPyImp.cpp index d962857c9e..92cba813f3 100644 --- a/src/App/DocumentObjectPyImp.cpp +++ b/src/App/DocumentObjectPyImp.cpp @@ -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; }