Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

Why isn't the reference counter in boost::shared_ptr volatile?

Decent shared_ptr implementation that does not require a massive library?

c++ shared-ptr

What is the Rust equivalent of C++'s shared_ptr?

two shared_ptr from same enable_shared_from_this instance

BOOST_FOREACH Iteration over boost::shared_ptr<list>

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->*?