blob: 33d41d3ea8bd9e3cb5c7a83b7acee42d534c0b80 [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>;