Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

Should `unique_ptr< T const [] >` accept a `T*` constructor argument?

c++ c++11 standards unique-ptr

Why does operator* of rvalue unique_ptr return an lvalue?

std::unique_ptr<T[]> API prohibits derived-to-base pointer conversions

strange error: use of deleted function 'std::unique_ptr<_Tp, _Dp>::unique_ptr when no pointers really created

How to assign a value of a string to a std::unique_ptr<std::string>?

c++ string unique-ptr

Memory leak despite using unique_ptr

c++ memory-leaks unique-ptr

Smart pointers with SDL

c++ c++11 sdl sdl-2 unique-ptr

Strange behaviour for unique_pointer in Visual Studio 2010

Why doesn't make_unique work with unique_ptr::reset?

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

Friend function is unable to construct a unique pointer of the class

c++ c++11 friend unique-ptr

c++11 - Ownership and getters

Custom allocators as alternatives to vector of smart pointers?

Can't assign empty initializer to vector of unique_ptrs

initialize a member unique_ptr to empty

c++11 unique-ptr

what are the differences between std::move and unique_ptr::reset?

c++ c++11 unique-ptr

How to get array size stored in unique_ptr?

What is the correct usage of std::unique_ptr while pushing into std::vector [duplicate]

c++ c++11 vector unique-ptr

vector of unique_ptr in C++11

c++ c++11 unique-ptr

How does returning std::make_unique<SubClass> work?

c++ move unique-ptr

Inserting a vector of unique_ptr into another vector

c++ vector unique-ptr