Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

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?

Is unique_ptr thread safe?

How to initialize std::unique_ptr in constructor?

C++ std::unique_ptr return from function and test for null

c++ c++11 unique-ptr

std::unique_ptr usage

c++ c++11 unique-ptr

C++ std::unique_ptr : Why isn't there any size fees with lambdas?

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

Converting std::unique_ptr<Derived> to std::unique_ptr<Base>

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