Top "Boost-smart-ptr" questions

Explicitly deleting a shared_ptr

Simple question here: are you allowed to explicitly delete a boost::shared_ptr yourself? Should you ever? Clarifying, I don't …

c++ boost shared-ptr boost-smart-ptr
boost::shared_ptr and dynamic cast

I have a problem using a shared_ptr of a base class, I can't seem to be able to call …

c++ boost dynamic-cast boost-smart-ptr
Is boost shared_ptr <XXX> thread safe?

I have a question about boost::shared_ptr<T>. There are lots of thread. using namespace boost; class …

c++ boost thread-safety shared-ptr boost-smart-ptr