We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbdd232 commit c4ce97dCopy full SHA for c4ce97d
pyfastutil/src/utils/PythonUtils.h
@@ -21,7 +21,7 @@ static __forceinline constexpr void PyFast_DECREF(T *object) noexcept {
21
if (UNLIKELY(((PyObject *) object)->ob_refcnt < 0))
22
return;
23
if (--((PyObject *) object)->ob_refcnt == 0)
24
- _Py_Dealloc(object);
+ _Py_Dealloc((PyObject *) object);
25
}
26
27
template<typename T>
0 commit comments