Kaydet (Commit) 420dc560 authored tarafından Zachary Ware's avatar Zachary Ware

Fix compiler warning on Windows

..\Modules\_testcapimodule.c(3320): warning C4098: 'matmulType_dealloc' : 'void' function returning a value
üst d143089e
......@@ -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 = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment