Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

Assigning a dereferenced shared_ptr

Initializing std::shared_ptr with std::make_shared having an std::array as argument

c++ c++11 std shared-ptr

pass derived class shared_ptr as parameter to function that wants base class shared_ptr

Factory method creating shared_ptr object

Accessing weak_ptr after deleting the original pointer

c++ vector shared-ptr weak-ptr

C++ Compare stacks of shared pointers

copy constructor for a class with pointer to a user defined type

shared_ptr assignment notation implicit conversion

c++ c++11 shared-ptr explicit

How does shared_ptr<T> detect that T derives from enable_shared_from_this<T>?

How to pass and share shared_ptr ownership with a better performance? [duplicate]

c++ c++11 shared-ptr

Is it safe to call a method on a smart pointer that is moved-from in the arguments?

A very weak reference (cannot be turned into shared)

std::make_shared and private constructor [duplicate]

c++ c++11 shared-ptr

Double Delete using Shared Pointers, even though there is still a shared_ptr to the object, its destructor is being called

c++ boost shared-ptr

C++ reinterpret_cast of std::shared_ptr reference to optimize

shared_ptr with vector

c++ boost shared-ptr

Shared pointers stored in a smart pointer vector inside another object stored in a shared pointer (Shareption)

"Observer-Pattern" in C++ using Smart Pointer ? [closed]