Skip to content

Commit c4ce97d

Browse files
committed
Fix build issue
1 parent cbdd232 commit c4ce97d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyfastutil/src/utils/PythonUtils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ static __forceinline constexpr void PyFast_DECREF(T *object) noexcept {
2121
if (UNLIKELY(((PyObject *) object)->ob_refcnt < 0))
2222
return;
2323
if (--((PyObject *) object)->ob_refcnt == 0)
24-
_Py_Dealloc(object);
24+
_Py_Dealloc((PyObject *) object);
2525
}
2626

2727
template<typename T>

0 commit comments

Comments
 (0)