Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

Why can't unique_ptr infer the type of the deleter?

c++ c++11 unique-ptr

Getter and setter for unique_ptr object (dependency injection)

Is it never truly safe to reinterpret_cast input into std::unique_ptr?

std::list< std::unique_ptr<T> >: passing it around

c++ c++11 unique-ptr

C++ multiple unique pointers from same raw pointer

c++ c++11 pointers unique-ptr

How to debug C++11 code with unique_ptr in DDD (or gdb)?

Searching a set of unique pointers

c++ c++11 set unique-ptr

Is value returned by std::unique_ptr::get valid after moving unique_ptr?

c++11 move unique-ptr

unique_ptr's assignment operator copies a deleter stored by a reference. Is it a feature or a bug?

Why exceptions from unique_ptr destructor terminates the program?

c++ c++11 unique-ptr

shared_ptr strangeness with null values and custom deleter

c++ shared-ptr unique-ptr

clang error with std::unique_ptr

c++ clang c++14 unique-ptr

How to declare a vector of unique_ptr's as class data member?

Should I use unique_ptr or shared_ptr in this case?

c++ shared-ptr unique-ptr

Unique copy of vector<unique_ptr>

c++ vector copy unique-ptr

Returning a unique void pointer from a function

c++ c unique-ptr

Why is std::unique_ptr reset not the same as assignment?

What is the scope of a unique_ptr returned from a function?

c++ unique-ptr

Using unique_ptr to control a file descriptor

Does passing a `unique_ptr` by value have a performance penalty compared to a plain pointer?

c++ unique-ptr overhead