Fix compiler warning on Windows

..\Modules\_testcapimodule.c(3320): warning C4098: 'matmulType_dealloc' : 'void' function returning a value
This commit is contained in:
Zachary Ware 2014-04-23 13:51:27 -05:00
parent d143089e17
commit 420dc56014
1 changed files with 1 additions and 1 deletions

View File

@ -3317,7 +3317,7 @@ matmulType_imatmul(PyObject *self, PyObject *other)
static void
matmulType_dealloc(PyObject *self)
{
return Py_TYPE(self)->tp_free(self);
Py_TYPE(self)->tp_free(self);
}
static PyNumberMethods matmulType_as_number = {