value turned const in lambda capture?...
Read MoreWhy shared_from_this can't be used in constructor from technical standpoint?...
Read Morehow to use atomic_store set shared_ptr to nullptr in multithread...
Read MoreHow should I statically cast a std::shared_ptr of one type to a std::shared_ptr of another...
Read MoreCan I create a boost::shared_ptr to a local variable?...
Read MoreUnwanted copy constructor call when creating a shared_ptr...
Read MoreCasting shared_ptr<Type> to weak_ptr<void> and back...
Read MoreBoost Smart pointers design issue...
Read MoreHow is the std::tr1::shared_ptr implemented?...
Read MoreTo what degree does std::shared_ptr ensure thread-safety?...
Read MoreHow the bool operator of std::shared_ptr is trrigered in the expression(i.e. `bool is_empty = shared...
Read MoreWhy is creating shared_ptr from unique_ptr of array not allowed anymore?...
Read MoreWhy isn't there a std::shared_ptr<T[]> specialisation?...
Read MoreCan you make a std::shared_ptr manage an array allocated with new T[]?...
Read MoreWhat does this shared_ptr snippet say?...
Read MoreDoes C++11 unique_ptr and shared_ptr able to convert to each other's type?...
Read MoreC++ boost::asio bad_weak_ptr when using shared_from_this...
Read Moreshared_from_this has empty _M_weak_this even after ownership by std::shared_ptr...
Read MoreWhy is std::make_shared<T> not a static function of std::shared_ptr<T>, i.e. std::shared...
Read MoreWhy is shared_ptr<void> legal, while unique_ptr<void> is ill-formed?...
Read Morestd::move and std::shared_ptr argument passed by value...
Read Morebad weak pointer after deserializing object that has a shared pointer to base...
Read MoreIs there a usage in singlethreaded code where std::shared_ptr is more appropriate than std::unique_p...
Read Morewhat is the difference between process(sp) and process(shared_ptr<int>(sp))?...
Read MoreIn c++ how to hide that a class uses shared_ptr to abstract class in it's private members...
Read MoreHow to write a custom deleter with a templateized QSharedPointer...
Read MoreHow can I delete a resource owned by shared pointer from the vector C++...
Read MoreWhy do I get a heap buffer overflow simply by declaring a shared_ptr member variable?...
Read More