Cleanup: silence unused parameter warnings

Introduced in rB48fa029dd11b.
This commit is contained in:
Germano Cavalcante 2021-05-15 14:13:22 -03:00
parent a56cc26b48
commit 3e6609a0dc
1 changed files with 3 additions and 3 deletions

View File

@ -33,17 +33,17 @@
/** \name Functions
* \{ */
static PyObject *pygpu_platform_vendor_get(PyObject *UNUSED(self), PyObject *value)
static PyObject *pygpu_platform_vendor_get(PyObject *UNUSED(self))
{
return PyUnicode_FromString(GPU_platform_vendor());
}
static PyObject *pygpu_platform_renderer_get(PyObject *UNUSED(self), PyObject *value)
static PyObject *pygpu_platform_renderer_get(PyObject *UNUSED(self))
{
return PyUnicode_FromString(GPU_platform_renderer());
}
static PyObject *pygpu_platform_version_get(PyObject *UNUSED(self), PyObject *value)
static PyObject *pygpu_platform_version_get(PyObject *UNUSED(self))
{
return PyUnicode_FromString(GPU_platform_version());
}