|
||||
File indexing completed on 2025-01-18 09:50:37
0001 // Copyright Gottfried Ganßauge 2003. 0002 // Distributed under the Boost Software License, Version 1.0. (See 0003 // accompanying file LICENSE_1_0.txt or copy at 0004 // http://www.boost.org/LICENSE_1_0.txt) 0005 0006 # ifndef BOOST_PYTHON_DETAIL_DEALLOC_HPP_ 0007 # define BOOST_PYTHON_DETAIL_DEALLOC_HPP_ 0008 namespace boost { namespace python { namespace detail { 0009 extern "C" 0010 { 0011 inline void dealloc(PyObject* self) 0012 { 0013 PyObject_Del(self); 0014 } 0015 } 0016 }}} // namespace boost::python::detail 0017 # endif // BOOST_PYTHON_DETAIL_DEALLOC_HPP_
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |