Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

How to pass const pointer to const object using unique_ptr

c++ c++11 unique-ptr

Storing a unique_ptr with custom deleter in a map

c++ unique-ptr

make_unique with brace initialization

How can unique_ptr have no overhead if it needs to store the deleter?

Can a unique_ptr take a nullptr value?

Why is unique_ptr<T>(T*) explicit?

Proper way of transferring ownership of a std::vector< std::unique_ptr< int> > to a class being constructed

Does the standard behavior for deleters differ between shared_ptr and unique_ptr in the case of null pointers?

Calling initializer_list constructor via make_unique/make_shared

Initializing a std::unique_ptr by passing the address of the pointer

c++ c++11 unique-ptr

Performance of resizing std::vector<std::unique_ptr<T>>

Using a std::unordered_set of std::unique_ptr

How to make std::make_unique a friend of my class

How to implement make_unique function in C++11? [duplicate]

c++ c++11 unique-ptr c++14

unique_ptr<T> lambda custom deleter for array specialization [duplicate]

When moving a unique_ptr into a lambda, why is it not possible to call reset?

Iterating over a container of unique_ptr's

How to assign the address of an existing object to a smart pointer?

Alternatives of static_pointer_cast for unique_ptr

How to perform a dynamic_cast with a unique_ptr?