Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

c++ shared_ptr error with intel 12.1.3

c++ shared-ptr

make_shared and abstract polymorphism

Smart pointers for graph representation (vertex neighbors) in C++11

Calling clear() on a vector of shared_ptr. Will memory be freed?

c++ vector shared-ptr

Why does shared_ptr<int> p; p=nullptr; compile?

Move object from local variable to std::shared_ptr

Pybind11 - Bound class method returns new class instance, rather than editing in-place

shared_ptr with malloc and free

No matching conversion for functional-style cast from 'B *' to 'std::shared_ptr<A>'

Custom (pool) allocator with boost shared_ptr

c++ boost shared-ptr allocator

How do I cast a shared_ptr from one parent class to another parent class?

Using shared_from_this() in constructor

c++ memory shared-ptr

Error spotted in C++ Primer 5th edition shared_ptr<int>

Why can we call reset on null shared_ptr?

What is the reason for the name `weak_ptr::lock()`?

Any advantage to using shared_ptr over scoped_ptr at top level?

c++ shared-ptr scoped-ptr

Pure virtual and std::shared_ptr

How to create a std::shared_ptr with the same control block as an expired std::weak_ptr

c++ c++11 shared-ptr weak-ptr

Understanding when shared_ptr reference counts are incremented when passing into a function