Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

Shared pointers and the performance

enable_shared_from_this (c++0x): what am I doing wrong?

Generic way to test if a type is a (smart) pointer

c++ templates shared-ptr

Should I call reset on a weak_ptr if I happen to notice it's expired?

c++ shared-ptr weak-ptr

std::shared_ptr and dlopen(), avoiding undefined behavior

Possible MSVC compiler bug

Initialization of shared_ptr<T> from unique_ptr<T[]>

Reasons to return reference to std::unique_ptr

c++ shared-ptr unique-ptr

Why does enable_shared_from_this embed a weak pointer instead of embedding the reference counter directly?

Does enable_shared_from_this and make_shared provide the same optimization

c++ shared-ptr make-shared

Why doesn't shared_ptr<A> implicit convert to shared_ptr<A const>?

Replacing the content of the shared pointer?

c++ boost shared-ptr

Why do const shared_ptr<const T>& and const shared_ptr<T>& show different reference counts?

c++ c++11 templates shared-ptr

How to get a reference to an object having shared_ptr to it?

c++ shared-ptr

C++ allocating shared_ptr with C++11 (std::shared_ptr): Is it still bad to initialize the shared_ptr into a temporary variable?

Does shared_ptr still own its object when calling the deleter?

How does a shared_ptr store deleter?

C++ shared+ptr use_count for nullptr

weak_ptr VS shared_ptr in graph node parent list

Vector construction when wrapped in a Shared Pointer