New posts in unique-ptr

Does unique_ptr::release() call the destructor?

Why can a T* be passed in register, but a unique_ptr<T> cannot?

Why use std::make_unique in C++17?

error::make_unique is not a member of ‘std’

Why is shared_ptr<void> legal, while unique_ptr<void> is ill-formed?

How to declare std::unique_ptr and what is the use of it?

Does C++11 unique_ptr and shared_ptr able to convert to each other's type?

How can I pass std::unique_ptr into a function

Copy constructor for a class with unique_ptr

Advantages of using std::make_unique over new operator [duplicate]

Passing around reference of structure is invalidated

How to capture a unique_ptr into a lambda expression?

Using smart pointers for class members

How do I use a custom deleter with a std::unique_ptr member?

std::auto_ptr to std::unique_ptr

Differences between std::make_unique and std::unique_ptr with new

std::unique_ptr with an incomplete type won't compile

Is there any use for unique_ptr with array?

Differences between unique_ptr and shared_ptr [duplicate]

make_unique and perfect forwarding