blob: 7752b75ac7252dc4949d9a27275afb8c7e491c84 [file] [log] [blame]
#include "torch/csrc/utils/object_ptr.h"
#include <Python.h>
template<>
void THPPointer<PyObject>::free() {
if (ptr)
Py_DECREF(ptr);
}
template class THPPointer<PyObject>;