Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

Differences between tr1::shared_ptr and boost::shared_ptr?

c++ boost shared-ptr tr1

boost shared_ptr: difference between operator= and reset?

c++ boost shared-ptr

How does a weak_ptr know that the shared resources has expired?

Can you use a boost::shared_ptr as a key for a map?

c++ shared-ptr stdmap

c++ copy constructor with shared_ptr members

std::enable_shared_from_this: is it allowed to call shared_from_this() in destructor?

Best way to protect from multiple shared_ptr to the same object

c++ c++11 shared-ptr

c++11 - Ownership and getters

Since C++17 supports shared_ptr of array, does this mean that an explicit deleter for T[] is no longer required in both ctor and reset?

c++ arrays shared-ptr c++17

How to remove (non-intrusive) smart pointers from a cache when there are no more references?

Custom allocators as alternatives to vector of smart pointers?

Is a moved-from shared_ptr guaranteed to be emptied?

c++ c++11 move shared-ptr

Call default copy constructor from within overloaded copy constructor

Why std::shared_ptr calls destructors from base and derived classes, where delete calls only destructor from base class? [duplicate]

c++ shared-ptr

Overhead and implementation of using shared_ptr

c++ c++11 shared-ptr

std::shared_ptr and Inheritance

Does it make sense to check for nullptr in custom deleter of shared_ptr?

c++ c++11 shared-ptr

Apple and shared_ptr

c++ macos shared-ptr

C++11: extending std::is_pointer to std::shared_ptr

Create shared_ptr to stack object