Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

Use of deleted function unique_ptr

c++ vector unique-ptr

Usage of this* in make_unique

Move unique_ptr: reset the source vs. destroy the old object

c++ move unique-ptr

How to delete an element of a vector when the containing object contains an unique_ptr?

How to correctly do the following: passing unique_ptr to lambda, then passing this lambda somewhere else

Insert unique_ptr in vector as pair

Multiple instances holds a reference to a unique_ptr

Can I rebind the deleter type for unique_ptr?

c++ c++11 stl unique-ptr

Does std::move invalidate a raw pointer obtained from unique_ptr::get()?

c++ unique-ptr

C++11 container of unique_ptr of forward declared class

Copying an object with a polymorphic member in C++

Validness of unique_ptr passed as a rvalue reference to a function (inheritance)

c++ inheritance unique-ptr

Why g++ compiler is not able to find unique_ptr?

c++ unique-ptr

unique_ptr swap doesn't work

c++ c++11 swap unique-ptr

Why do unique_ptr have two functions reset and operator= that do similar things but not overload?

Can you initialize an STL container with unique_ptr from an initializer list?

c++11 stl unique-ptr

incomplete types with shared_ptr and unique_ptr

Initializing Unique Pointers as a Class Member

When should we use a custom deleter instead of the default deleter in a unique_ptr?