fix -Wextra in MeshPart

This commit is contained in:
wmayer
2016-09-24 00:42:52 +02:00
parent b1272cb1aa
commit 1d84eac025
5 changed files with 11 additions and 8 deletions

View File

@@ -188,7 +188,7 @@ namespace Py
: public PythonExtensionBase
{
protected:
explicit PythonClass( PythonClassInstance *self, Tuple &args, Dict &kwds )
explicit PythonClass( PythonClassInstance *self, Tuple &/*args*/, Dict &/*kwds*/ )
: PythonExtensionBase()
, m_class_instance( self )
{
@@ -235,7 +235,7 @@ namespace Py
return *p;
}
static PyObject *extension_object_new( PyTypeObject *subtype, PyObject *args, PyObject *kwds )
static PyObject *extension_object_new( PyTypeObject *subtype, PyObject * /*args*/, PyObject * /*kwds*/ )
{
#ifdef PYCXX_DEBUG
std::cout << "extension_object_new()" << std::endl;