Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

Tracking down owner of a shared_ptr?

Does accessing via a shared_ptr pollute the cache line more than raw pointer?

Lazy-constructed shared_ptr

c++ c++11 std wrapper shared-ptr

Dereferencing a shared pointer and assigning to it

c++ shared-ptr dereference

Why is there no atomic_{store,load} for weak_ptr?

How to mix C++ shared pointers and object references

Does shared_ptr's dtor require the use of a "deleter"?

specialise `std::default_delete` for `std::shared_ptr`

c++ shared-ptr

Const correctness with objects containing shared_ptr

c++ constants 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