Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in smart-pointers

Return std::unique_ptr<T> from factory function creating fully hidden implementation of pure virtual interface

c++ smart-pointers c++14

How to create a new value and assign to a private unique_ptr in a class constructor?

Remove from a std::set<shared_ptr<T>> by T*

c++ boost smart-pointers

Using QSharedPointer with new[] yields "Mismatched free() / delete / delete[]" in valgrind

Refactoring code to use Boost shared pointers

Dealing with unique_ptr in containers

Returning Smart Pointers

c++ weak_ptr expiring after dereference?

c++ smart-pointers weak-ptr

Why dereferencing a unique_ptr won't modify the original object

c++ pointers smart-pointers

What's correct way to remove a boost::shared_ptr from a list?

c++ stl boost smart-pointers

Manual Object Ownership vs Smart Pointers

segment fault for a simple std::shared_ptr construction case

Accessing object unique_ptr is pointing to

c++ smart-pointers

Why is `str` encapsulated inside `String` instead of inside a `Box<str>`?

string rust smart-pointers

Is it alright to return a reference to a non-pointer member variable as a pointer?

C++ Use of deleted function error

c++ c++11 smart-pointers

Why is the size of a pointer to something on the heap larger than the size of a stack variable?

Is there a smart pointer that is automatically nulled when its target is destroyed in C++

Conditionally instantiate a template at run-time

Boost weak_ptr's in a multi-threaded program to implement a resource pool