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