Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

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

C++ smart pointer const correctness

c++ constants shared-ptr

boost, shared ptr Vs weak ptr? Which to use when?

How to pass deleter to make_shared?

Check for null in std::shared_ptr

c++ shared-ptr