py3: fox compiler warnings
issue 0000995
This commit is contained in:
@@ -187,7 +187,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;
|
||||
|
||||
@@ -1487,7 +1487,7 @@ int PythonExtensionBase::buffer_get( Py_buffer * /* buf */, int /* flags */ )
|
||||
return -1;
|
||||
}
|
||||
|
||||
int PythonExtensionBase::buffer_release( Py_buffer *buf )
|
||||
int PythonExtensionBase::buffer_release( Py_buffer * /*buf*/ )
|
||||
{
|
||||
/* This method is optional and only required if the buffer's
|
||||
memory is dynamic. */
|
||||
|
||||
Reference in New Issue
Block a user