Search code examples
How can I transparently process std::vector of T and std::vector of std::shared_ptr<T> in a te...

c++templatesgenericsstdshared-ptr

Read More
std::shared_ptr thread safety...

c++stdshared-ptr

Read More
Understanding C++ std::shared_ptr...

c++shared-ptrsmart-pointersreference-counting

Read More
Are smart pointers that are members of a class still automatically freed?...

c++pointersshared-ptrsmart-pointers

Read More
How do I call ::std::make_shared on a class with only protected or private constructors?...

c++c++11shared-ptr

Read More
why i can't cast nullptr to weak_ptr<>...

c++castingnullshared-ptrweak-ptr

Read More
value turned const in lambda capture?...

c++lambdashared-ptrcapture

Read More
boost::asio::read throws compilation error 'read_some' is not a member of 'boost::shared...

boosttcpboost-asioshared-ptr

Read More
Copying virtual base class results in losing shared_ptr owned object...

c++c++11language-lawyershared-ptrvirtual-inheritance

Read More
Should we pass a shared_ptr by reference or by value?...

c++c++11boostshared-ptr

Read More
Managing the Lifecycle of re2::RE2 Objects with Cached and Stack-Allocated Options...

c++memory-managementshared-ptrre2stack-allocation

Read More
Does the reference counter get decremented before or after the custom deleter?...

c++shared-ptr

Read More
How to accomplish covariant return types when returning a shared_ptr?...

c++boostreturn-valuecovarianceshared-ptr

Read More
Why weak_ptr::use_count may return a different count to shared_ptr::use_count?...

c++shared-ptrsmart-pointersweak-ptr

Read More
Why would my C++ stdlib's shared_ptr use acq_rel ordering when decrementing the atomic ref count...

c++shared-ptrstdatomic

Read More
Problems understanding the use of shared_ptr<void> in std::map...

c++shared-ptrstdmap

Read More
passing a shared_ptr to a function from another function...

c++shared-ptr

Read More
Problem with std::unique_ptr and dangling pointer...

c++c++17shared-ptrsmart-pointersunique-ptr

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

c++inheritanceshared-ptrsmart-pointers

Read More
Can I safely replace boost::shared_array<T> with std::shared_ptr<T[]>?...

boostc++14shared-ptr

Read More
How does a weak_ptr prevent cyclic references?...

c++c++11shared-ptrweak-ptrcyclic-reference

Read More
On shared_ptr use_count of resource pool C++ std::shared_ptr...

c++mutexshared-ptrpool

Read More
segfaults in C++ when using std::shared_ptr...

c++pointersfunction-pointersshared-ptrsmart-pointers

Read More
SIGSEGV when trying to solve large mazes with A*...

c++pointerssegmentation-faultshared-ptrsmart-pointers

Read More
How can I use std::enable_shared_from_this in both super and subclass?...

c++shared-ptrmultiple-inheritanceweak-ptrenable-shared-from-this

Read More
Why std::shared_ptr calls destructors from base and derived classes, where delete calls only destruc...

c++shared-ptr

Read More
C++ Primer 5th Ed - Stanley Lipmann: Question on shared_ptr.unique() used in conjunction with shared...

c++heap-memoryc++20dynamic-memory-allocationshared-ptr

Read More
Weak pointer library implementation C++...

c++shared-ptrsmart-pointersweak-ptrrefcounting

Read More
Why would I std::move an std::shared_ptr?...

c++c++11shared-ptrsmart-pointersmove-semantics

Read More
Casting smartpointers without RTTI C++...

c++castingembeddedshared-ptrrtti

Read More
BackNext