Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

Should I use unique_ptr for a string?

c++ c++11 unique-ptr stdstring

Deep and shallow cloning with unique pointers

c++ unique-ptr

Cannot pass std::unique_ptr in std::function<>

c++ function lambda unique-ptr

Implementing Containers using Smart Pointers

How to use unique_ptr for arrays

Cannot understand how to add new object to std::list<std::unique_ptr<classname>>

c++ c++11 stl unique-ptr

Passing a container of unique_ptr to constructor?

How do you move a unique_ptr out of an vector<unique_ptr<Foo>>?

c++ vector unique-ptr

How to create a new value and assign to a private unique_ptr in a class constructor?

Dealing with unique_ptr in containers

Returning Smart Pointers

Creating a unique_ptr from a pointer

c++ unique-ptr

What is the best pattern to return dynamically allocated buffer from a function in C++?

Efficiently and elegantly returning emplaced unique_ptr

unique_ptr to char* conversion

c++ pointers unique-ptr

No appropriate default constructor available for std::unique_ptr

c++ sdl unique-ptr

Fluent interface pattern and std::unique_ptr

Is a std::unique_ptr moved into a std::vector when using push_back?

Returning a unique_ptr from a class method C++0x

Is it possible to apply std::sort on std::unique<T[ ]>?