diff --git a/Include/internal/pycore_object.h b/Include/internal/pycore_object.h index f022f8246989d1..7e187e5fd5ddc7 100644 --- a/Include/internal/pycore_object.h +++ b/Include/internal/pycore_object.h @@ -47,6 +47,8 @@ _Py_DECREF_SPECIALIZED(PyObject *op, const destructor destruct) destruct(op); } } +#define _Py_DECREF_SPECIALIZED(op, destruct) \ + _Py_DECREF_SPECIALIZED((op), (const destructor)(destruct)) static inline void _Py_DECREF_NO_DEALLOC(PyObject *op)