Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

stl container with std::unique_ptr's vs boost::ptr_container

Pimpl - Why can make_unique be called on an incomplete type

Move a unique_ptr with custom deleter to a shared_ptr

Should I use shared_ptr or unique_ptr? [duplicate]

Should std::unique_ptr<void> be permitted

std::unique_ptr, deleters and the Win32 API

c++ winapi c++11 unique-ptr

push_back or emplace_back with std::make_unique

Deleter type in unique_ptr vs. shared_ptr [duplicate]

Why is `make_unique<T[N]>` disallowed?

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>>