Revert "[python] Add fix for Boost.Python compile errors"

This reverts commit 11590e134e.
This commit is contained in:
Alexis Hildebrandt 2016-06-22 15:43:37 +02:00
parent 059905f709
commit 01220484f4
2 changed files with 0 additions and 6 deletions

View file

@ -243,9 +243,6 @@ namespace {
void export_commodity()
{
#if BOOST_VERSION >= 106000
python::register_ptr_to_python< shared_ptr<commodity_pool_t> >();
#endif
class_< commodity_pool_t, shared_ptr<commodity_pool_t>,
boost::noncopyable > ("CommodityPool", no_init)
.add_property("null_commodity",

View file

@ -232,9 +232,6 @@ void export_journal()
boost::noncopyable >("PostHandler")
;
#if BOOST_VERSION >= 106000
python::register_ptr_to_python< shared_ptr<collector_wrapper> >();
#endif
class_< collector_wrapper, shared_ptr<collector_wrapper>,
boost::noncopyable >("PostCollectorWrapper", no_init)
.def("__len__", &collector_wrapper::length)