Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

shared_ptr, unique_ptr, ownership, Am I overdoing it in this particular case?

c++ c++11 c++14 shared-ptr

How do you work with a C++ function that returns a shared_ptr<T> when calling it from Rust over FFI?

c++ rust shared-ptr ffi

Safely convert (vector of shared_ptr to objects) to (vector of shared_ptr to constant objects)

Why doesn't std::shared_ptr have operator->*?

How to view the internal data of a smart pointer inside gdb?

Check whether an object derived from enable_shared_from_this is managed by shared_ptr?

c++ c++11 c++17 shared-ptr

How To Make a clone method using shared_ptr and inheriting from enable_shared_from_this

c++ shared-ptr

How can I take a single element out of a boost library (e.g. shared_pointer)?

boost::shared_ptr and std::shared_ptr co-existence

c++ boost c++11 shared-ptr

How to test whether a shared_ptr is empty or owns nothing

c++ shared-ptr

Is it good practice to store copies of the same shared pointers in different vectors?

c++ shared-ptr c++03

What is difference between "owned pointer" and the "stored pointer" for std::shared_ptr?

c++ c++11 shared-ptr

Why is raw pointer to shared_ptr construction allowed in all cases?

c++ pointers c++11 shared-ptr

shared_ptr<> to an array custom deleter (with make_shared)

c++ arrays shared-ptr

Memory order in shared pointer destructor

Avoiding indirect cyclic references when using shared_ptr and weak_ptr

Can I use boost::make_shared with a private constructor?

Pass an object to a function expecting shared_ptr without actually sharing ownership

Is there any situation in which I wouldn't use std::make_shared?

How to avoid the need to specify deleter for std::shared_ptr every time it's constructed or reset?