1234567891011121314151617 |
- # ifndef BOOST_PYTHON_DETAIL_DEALLOC_HPP_
- # define BOOST_PYTHON_DETAIL_DEALLOC_HPP_
- namespace boost { namespace python { namespace detail {
- extern "C"
- {
- inline void dealloc(PyObject* self)
- {
- PyObject_Del(self);
- }
- }
- }}}
- # endif
|