Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

Unit testing, mocking and unique_ptr

std::unique_ptr deleted function, initializer_list - driven allocation

std::unique_ptr and pointer to pointer

c++ c++11 unique-ptr

vector of unique_ptr deleting?

Copy Constructor to transfer ownership of a unique_ptr

When does std::unique_ptr<A> need a special deleter if A has a destructor?

Add a deep copy ctor to std::unique_ptr<my_type>

No op delete for unique_ptr

c++ c++11 unique-ptr

static unique_ptr calls destructor twice

Why can't I std::move std::unique_ptrs between std::sets?

Why did I get the: "Attempting to reference a deleted function" error after adding a vector with unique pointers to my header file?

std::unique_ptr compiler error: Members of a derived class cannot access private members of a base class

Providing an (empty) user-defined destructor causes compilation error

Unique pointer in-class initialization

What's wrong with this initialization of unique_ptr?

If I take a raw pointer of a unique_ptr and then use reset, is the raw pointer still guaranteed to be valid?

c++ unique-ptr

Multiple inheritance and unique_ptr destruction

Doing std::move twice with the same unique_ptr

c++ move unique-ptr

C++ 11 Smart Pointer usage

Is it true that unique_ptr which points to an array will automatically free dynamic memory after calling release()?

c++ unique-ptr