Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

std::shared_ptr, std::weak_ptr and control block

Is lambda with initializer to itself equivalent to lambda without initializer?

c++ lambda shared-ptr

How can I resolve a "'shared_ptr' was not declared in this scope" error?

Valid situations for comparing shared_ptr instances

c++11 shared-ptr equality

Prevent creating a class only if shared pointer

c++ copy instance shared-ptr

C++ working with objects on heap

Does static_pointer_cast update reference counting

c++ shared-ptr

Understanding C++ std::shared_ptr when used with temporary objects

Initializing boost::asio sockets after constructor

c++ boost shared-ptr

Why std::shared_ptr control block need to hold a pointer to managed object with its correct type

c++ shared-ptr raii tr1

Delete std::shared_ptr without destroying the managed object?

Is an Object Pool pattern of shared_ptr possible?

shared_ptr std::dynamic_pointer_cast fails with "attempting to reference a deleted function" error

c++ shared-ptr dynamic-cast

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?