Search code examples
Conversion from boost::shared_ptr to std::shared_ptr?...

c++boostshared-ptrstd

Read More
Why did my shared_ptr turn into an invalid pointer?...

c++shared-ptr

Read More
Question on converting boost shared pointer to standard shared pointer...

c++boostshared-ptr

Read More
Does shared_ptr a = make_shared() create a copy of the shared_ptr before constructor is run?...

c++c++11initializationthread-safetyshared-ptr

Read More
no matching function for call to <unresolved overloaded function type>...

c++c++11shared-ptrrvalue-referencestdthread

Read More
Move object from local variable to std::shared_ptr...

c++c++17shared-ptrsmart-pointers

Read More
why pointer variable inside private class can't point to outside variable of class...

c++objectooppointersshared-ptr

Read More
Why does shared_ptr<int> p; p=nullptr; compile?...

c++c++11shared-ptrsmart-pointersexplicit

Read More
shared_ptr with given C-like allocation and deallocation functions...

c++memory-managementshared-ptrsmart-pointers

Read More
shared_ptr doesn't increase reference count, but point at the same address...

c++stlshared-ptrsmart-pointers

Read More
C++ compiler error: “invalid declarator before”...

c++11compiler-errorsshared-ptrfactory-methodmake-shared

Read More
std::shared_ptr initialization: make_shared<Foo>() vs shared_ptr<T>(new Foo)...

c++c++11shared-ptrsmart-pointers

Read More
C++ shared_ptr and mutex...

c++mutexshared-ptr

Read More
how to overcome make_shared constness...

c++boostshared-ptr

Read More
How to initialize shared_ptr not knowing its type?...

c++shared-ptrmake-shared

Read More
Can I reset shared_ptr without deleting object so that weak_ptr loses a reference to it...

c++shared-ptrweak-ptr

Read More
C++ make::shared wrapping on existing raw pointer...

c++shared-ptr

Read More
How to initialize a shared_ptr to a QTextCodec in my constructor?...

c++qtstdshared-ptr

Read More
Get the last element from a std::vector...

c++shared-ptr

Read More
Is it possibile to call virtual methods with shared pointers?...

c++polymorphismshared-ptr

Read More
Alternatives of static_pointer_cast for unique_ptr...

c++c++11castingshared-ptrunique-ptr

Read More
convert const std::shared_ptr<const T> into boost::shared_ptr<T>...

c++boostconstantsshared-ptr

Read More
Captured shared_ptr released while executing the lambda body...

c++lambdashared-ptr

Read More
How to get a reference to an object having shared_ptr to it?...

c++shared-ptr

Read More
Can you allocate an array with something equivalent to make_shared?...

c++c++11shared-ptrmake-shared

Read More
How to avoid shared pointers in C++ caused by try/catch?...

c++referencetry-catchshared-ptr

Read More
Cannot erase a shared_ptr from set...

c++setshared-ptr

Read More
What type is used by std::allocate_shared to allocate memory?...

c++c++11shared-ptrdynamic-memory-allocationallocator

Read More
Shared_ptr instance is not set for an object as expected...

c++c++17c++14shared-ptr

Read More
Should I delete pointer from `new` passed to a function which makes into a `shared_ptr`?...

c++c++14shared-ptr

Read More
BackNext