Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

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

Can you use a shared_ptr for RAII of C-style arrays?

c++ raii shared-ptr

Why does libc++'s implementation of shared_ptr use full memory barriers instead of relaxed?

How to avoid memory leak with shared_ptr?

boost Shared_pointer NULL

Does the standard behavior for deleters differ between shared_ptr and unique_ptr in the case of null pointers?

Explicitly deleting a shared_ptr

In gdb, I can call some class functions, but others "cannot be resolved". Why?

Detach a pointer from a shared_ptr? [duplicate]

c++ boost shared-ptr

How does a reference-counting smart pointer's reference counting work?

Create a boost::shared_ptr to an existing variable