Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

Are there any advantages of using std::unique_ptr<T>& instead of std::unique_ptr<T>?

c++ unique-ptr

Passing std::unique_ptr to helper function

Turning this raw pointer situation into a unique_ptr?

Is std::unique_ptr the wrong tool to allocate memory for an array?

Range-based loop, unique pointers, and move semantics

Convert unique_ptr<Derived> to unique_ptr<Base>

c++ pointers unique-ptr

lifetime of an object managed by const std::unique_ptr

c++ c++11 unique-ptr

why we cannot use "=" to shared_ptr or unique_ptr? [duplicate]

How to interpret a "const unique_ptr"

c++ constants unique-ptr

Trivial raw pointer that self-initializes to nullptr in C++

c++ pointers c++11 unique-ptr

QMap and std::unique_ptr

c++ qt unique-ptr qmap

What is the purpose of the third "overload" for make_unique? [duplicate]

Why does `std::shared_ptr` store a type erased deleter [duplicate]

Is it possible to store unique_ptr in a QList of QPairs?

c++ qt c++11 stl unique-ptr

How to resize a vector of vector of unique_ptr?

c++ vector unique-ptr

Why cannot I delete unique_ptr<char[]> with reset()?