New posts in smart-pointers

How to enable_shared_from_this of both parent and derived

Recommended usage of std::unique_ptr [duplicate]

Passing unique_ptr to functions

unique_ptr and OpenSSL's STACK_OF(X509)*

Use of observer_ptr

Bad practice to return unique_ptr for raw pointer like ownership semantics?

How to get the Object being pointed by a shared pointer?

How to break shared_ptr cyclic reference using weak_ptr

Smart pointers/safe memory management for C?

Dynamic casting for unique_ptr

Is there a CUDA smart pointer?

creating a shared_ptr from unique_ptr

Is it possible to use a C++ smart pointers together with C's malloc?

C++11: Replace all non-owning raw pointers with std::shared_ptr()?

Return Type Covariance with Smart Pointers

getting a normal ptr from shared_ptr?

Should I delete the move constructor and the move assignment of a smart pointer?

"Downcasting" unique_ptr<Base> to unique_ptr<Derived>

When should I use raw pointers over smart pointers?

Why does unique_ptr have the deleter as a type parameter while shared_ptr doesn't?