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