Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

C++ stack with unique_ptr

c++ unique-ptr

What do I Need to Return an Object with a unique_ptr Member?

Smart pointers for graph representation (vertex neighbors) in C++11

Why cant I swap a unique_ptr with a unique_ptr returned by a function?

Can I throw a unique_ptr?

c++ exception stl unique-ptr

C++ map brace initialization and unique ptr

Moving a unique pointer - undefined behavior on cppreference?

unique_ptr inside a variant. Is it safe to use?

c++ unique-ptr variant

Convenient type-inferring way to reassign `unique_ptr` value with new object

c++ c++14 unique-ptr

Why does default move constructor need default-deleter of class used in unique_ptr?

passing unique_ptr to a function by reference

How to cast vector of unique_ptr in a more generic way

Memory leak despite destructor call using static unique_ptr

C++ Pimpl Idiom Incomplete Type using std::unique_ptr

Can't assign iterator with no viable overloaded '=' error

c++ stl unique-ptr

Assign derived class unique_ptr to base class unique_ptr

c++ oop c++11 unique-ptr

Compilation error when trying to find_if an unique_ptr in a vector

c++ gcc unique-ptr

Recommended way to make std::unique_ptr of array type without value initialization?

Why is the memory created via unique_ptr not being deleted properly when reset() is called?

c++ memory unique-ptr

Why unique_ptr requires complete type in constructor?