Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

Effectiveness of unique_ptr

Using std::unique_ptr<void> with a custom deleter as a smart void*

c++ c++11 unique-ptr

About safe operations involving unique pointers

c++ c++14 unique-ptr

std::unique_ptr<T[]> and custom allocator deleter

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