New posts in shared-ptr

Where is shared_ptr?

Passing shared_ptr<Derived> as shared_ptr<Base>

Why is shared_ptr<void> legal, while unique_ptr<void> is ill-formed?

C++ - passing references to std::shared_ptr or boost::shared_ptr

std::shared_ptr thread safety explained

Does C++11 unique_ptr and shared_ptr able to convert to each other's type?

std::shared_ptr of this

Should I pass a shared_ptr by reference? [duplicate]

Difference between `const shared_ptr<T>` and `shared_ptr<const T>`?

Why do std::shared_ptr<void> work

Why isn't there a std::shared_ptr<T[]> specialisation?

Using smart pointers for class members

Why would I std::move an std::shared_ptr?

shared_ptr to an array : should it be used?

Differences between unique_ptr and shared_ptr [duplicate]

When is std::weak_ptr useful?

Should we pass a shared_ptr by reference or by value?

Difference in make_shared and normal shared_ptr in C++

How do I call ::std::make_shared on a class with only protected or private constructors?

When to use virtual destructors?