Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

Passing a shared pointer by reference or by value as parameter to a class

c++ shared-ptr

Pointers vs auto_ptr vs shared_ptr

c++ pointers shared-ptr

A non-shared smart pointer with incomplete types

Double inheritance of enable_shared_from_this

Is it thread safe to reset and copy shared_ptr simultaneously?

up-casting std::shared_ptr using std::dynamic_pointer_cast

c++ c++11 shared-ptr upcasting

extending shared_ptr by inheritance

c++ boost shared-ptr

Set shared_ptr to point existing object

c++ c++11 vector shared-ptr

Assigning a shared_ptr to an offset of an array

Is it OK to use boost::shared ptr in DLL interface?

boost::shared_ptr and Inheritance

c++ inheritance shared-ptr

What is the cyclic dependency issue with shared_ptr?

c++ shared-ptr weak-ptr

Why does shared_ptr needs to hold reference counting for weak_ptr?

Does `std::make_shared<POD>()` value initialize my POD?

c++ c++11 shared-ptr

Smart pointers + cycles + "->"

Using shared_ptr and glutInit causes segmentation fault

c++ c++11 gcc shared-ptr glut

Using smart pointers for C++ binary search tree

shared_ptr<T> to shared_ptr<T const> and vector<T> to vector<T const>

Is an empty aliasing shared_ptr a good alternative to a no-op deleting shared_ptr?

c++ c++11 shared-ptr