Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

std::shared_ptr Exception Safety

Why is std::shared_ptr::unique() deprecated?

How does shared_ptr<void> know which destructor to use? [duplicate]

c++ shared-ptr void

Can you allocate an array with something equivalent to make_shared?

shared_ptr Assertion px != 0 failed

shared-ptr boost-thread

is it better to use shared_ptr.reset or operator =?

c++ c++11 shared-ptr

How do you make std::shared_ptr not call delete()

c++ c++11 shared-ptr

How to initialize a shared_ptr that is a member of a class?

intrusive_ptr in c++11

Alternatives of static_pointer_cast for unique_ptr

Equality-compare std::weak_ptr

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

Does using .reset() on a std::shared_ptr delete all instances

shared_ptr vs scoped_ptr

Why do shared_ptr deleters have to be CopyConstructible?

Why are two raw pointers to the managed object needed in std::shared_ptr implementation?

c++ pointers c++11 shared-ptr

How to release pointer from boost::shared_ptr?

c++ boost shared-ptr

How is the std::tr1::shared_ptr implemented?

c++ shared-ptr tr1

Conversion from boost::shared_ptr to std::shared_ptr?

c++ boost shared-ptr std

Why shared_from_this can't be used in constructor from technical standpoint?

c++ constructor shared-ptr

What (not) to do in a constructor

c++ oop constructor shared-ptr