Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

Why does = default member initializer request instantiation of unique_ptr destructor while {} does not?

Did the rules for nullptr init of unique_ptr change in C++23?

Typedef of unique_ptr List

c++ list unique-ptr

moving unique_ptr in c++

c++ unique-ptr

Copy std::map of std::unique_ptr with polymorphic content

c++ copy c++14 unique-ptr

std::move on object pointed to by a unique_ptr

c++ c++11 unique-ptr

does auto deduce that a type is a pointer?

c++ unique-ptr auto

unique pointer memory leak

'&' requires l-value on &std::unique_ptr<>.get

c++ unique-ptr lvalue

design headache with unique_ptr

c++ c++11 factory unique-ptr

unique_ptr ownership error when return unique_ptr from function [duplicate]

c++ unique-ptr

Why don't I get destructors called when using unique_ptr? [duplicate]

Why using unique_ptr with arrays causes compilation error?

c++ arrays unique-ptr

make_unique cannot access private constructor in static member

c++ unique-ptr

Default vector constructor with a unique_ptr and thread

why const_cast is not allowed for unique_ptr?

Unique pointer error while object construction in C++

c++ unique-ptr

about the type of raw pointer inside unique_ptr

c++ c++11 unique-ptr

Do I need to explicitly initialize a std::unique_ptr in the constructor?

c++ constructor unique-ptr