Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

How can I mock a method with a return type of unique_ptr in Google Mock?

What happens when redirecting unique_ptr?

c++ c++11 unique-ptr

Cannot add a unique_ptr to a std::array

c++ arrays std unique-ptr

How to use std::unique_ptr on a struct?

c++ c++11 struct unique-ptr

propagate_const of const unique_ptr

c++ c++11 c++17 unique-ptr

Why can I not move unique_ptr from a set to a function argument using an iterator?

Get a pointer pointer for a smart pointer

Assigning make_unique<X> to shared_ptr<X>

Why can't I use std::unique_ptr as a "template<class> class" argument?

When is it appropriate to use std::optional

Why does std::unique_ptr have an equality operator?

How to prevent clients from passing a nullptr to a constructor?

c++ unique pointer: memory leak

C++ array of char using unique_ptr

c++ c++11 unique-ptr

What's wrong to reset std::unique_ptr to pointer to array?

Does std::unique_ptr set its underlying pointer to nullptr inside its destructor?

c++ unique-ptr nullptr

Returning a unique_ptr<T> . Concept clarification

simple structs with make_unique and emplace_back

c++ unique-ptr emplace

Smart pointers - unique_ptr for a stack-allocated variable

C++ Vector of unique pointers practice