sl@0: // Copyright Gottfried Ganßauge 2003. sl@0: // Distributed under the Boost Software License, Version 1.0. (See sl@0: // accompanying file LICENSE_1_0.txt or copy at sl@0: // http://www.boost.org/LICENSE_1_0.txt) sl@0: sl@0: # ifndef BOOST_PYTHON_DETAIL_DEALLOC_HPP_ sl@0: # define BOOST_PYTHON_DETAIL_DEALLOC_HPP_ sl@0: namespace boost { namespace python { namespace detail { sl@0: extern "C" sl@0: { sl@0: inline void dealloc(PyObject* self) sl@0: { sl@0: PyObject_Del(self); sl@0: } sl@0: } sl@0: }}} // namespace boost::python::detail sl@0: # endif // BOOST_PYTHON_DETAIL_DEALLOC_HPP_