Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

C++ - passing references to std::shared_ptr or boost::shared_ptr

std::shared_ptr thread safety explained

c++ c++11 shared-ptr

Does C++11 unique_ptr and shared_ptr able to convert to each other's type?

std::shared_ptr of this

Should I pass a shared_ptr by reference? [duplicate]

c++ shared-ptr

Difference between `const shared_ptr<T>` and `shared_ptr<const T>`?

c++ boost constants shared-ptr

Why do std::shared_ptr<void> work

c++ c++11 shared-ptr

Using smart pointers for class members

Why would I std::move an std::shared_ptr?

shared_ptr to an array : should it be used?

c++ c++11 shared-ptr

How do I call ::std::make_shared on a class with only protected or private constructors?

c++ c++11 shared-ptr

Differences between unique_ptr and shared_ptr [duplicate]

When is std::weak_ptr useful?

Should we pass a shared_ptr by reference or by value?

c++ c++11 boost shared-ptr

Difference in make_shared and normal shared_ptr in C++

c++ c++11 shared-ptr

When to use virtual destructors?