Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

How do you add Derived objects to a vector of unique_ptr

c++ pointers vector unique-ptr

Moving a vector of unique_ptr<T> [duplicate]

Error on MSVC when trying to declare std::make_unique as friend of my templated class

Constant character pointer using unique_ptr

std::unique_ptr test before taking ownership

Do strings make a copy of the data in it's constructor

c++ string unique-ptr

Why is unique_ptr<T> not constructible from T*?

c++ unique-ptr

Are here any benefits from using std::unique_ptr?

c++ exception unique-ptr

What are the benefits and risks, if any, of using std::move with std::shared_ptr

Should I use unique_ptr for a string?

c++ c++11 unique-ptr stdstring

Deep and shallow cloning with unique pointers

c++ unique-ptr

Cannot pass std::unique_ptr in std::function<>

c++ function lambda unique-ptr

Implementing Containers using Smart Pointers

How to use unique_ptr for arrays

Cannot understand how to add new object to std::list<std::unique_ptr<classname>>

c++ c++11 stl unique-ptr

Passing a container of unique_ptr to constructor?

How do you move a unique_ptr out of an vector<unique_ptr<Foo>>?

c++ vector unique-ptr

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

Dealing with unique_ptr in containers

Iterating over dereferenced unique_ptr, that contains vector, in for range loop