Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

Is it correct to return null shared_ptr?

Is there a recommended way to test if a smart pointer is null?

Why shared_ptr's reference counting object needs to keep track of the number of weak_ptrs pointing to the object too?

c++ c++11 shared-ptr weak-ptr

C++ std::shared_ptr usage and information

c++ g++ shared-ptr

const shared_ptr to shared_ptr

boost shared-ptr

When would you use an std::auto_ptr instead of boost::shared_ptr?

Atomic shared_ptr for lock-free singly linked list

How to accomplish covariant return types when returning a shared_ptr?

Does the WKWYL optimization in make_shared<>() introduce a penalty for some multithreading applications?

C++11 atomics and intrusive shared pointer reference count

c++ c++11 shared-ptr atomic

Does std::make_shared() use custom allocators?

How to handle 'this' pointer in constructor?

Move a unique_ptr with custom deleter to a shared_ptr

Should I use shared_ptr or unique_ptr? [duplicate]

What is boost's shared_ptr(shared_ptr<Y> const & r, T * p) used for?

Deleter type in unique_ptr vs. shared_ptr [duplicate]

How to properly duplicate an object given its shared_ptr

enable_shared_from_this and inheritance

Why is the size of make_shared two pointers?

c++ c++11 shared-ptr

Passing const shared_ptr<T>& versus just shared_ptr<T> as parameter

c++ shared-ptr