You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assuming boost::shared_ptr and std::shared_ptr are distinct types, let Boost.Python provide builtin support for std::shared_ptr whenever the compiler supports it, and optionally support for boost::shared_ptr (for backward compatibility). The latter may be removed later, to reduce Boost.Python's dependency on Boost.
The text was updated successfully, but these errors were encountered:
This depends on #29, i.e. making std::shared_ptr support complete (in particular, implicit upcasing, which works for boost::shared_ptr but not std::shared_ptr).
Assuming
boost::shared_ptr
andstd::shared_ptr
are distinct types, let Boost.Python provide builtin support forstd::shared_ptr
whenever the compiler supports it, and optionally support forboost::shared_ptr
(for backward compatibility). The latter may be removed later, to reduce Boost.Python's dependency on Boost.The text was updated successfully, but these errors were encountered: