Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

C++ inserting unique_ptr in map

c++ pointers map stl unique-ptr

what's the point of std::unique_ptr::get

c++ c++11 pointers unique-ptr

Why can't a weak_ptr be constructed from a unique_ptr?

Why does unique_ptr take two template parameters when shared_ptr only takes one?

Should I assign or reset a unique_ptr?

Is unique_ptr guaranteed to store nullptr after move?

Forward declaration with unique_ptr? [duplicate]

Is auto_ptr deprecated?

Proper way to create unique_ptr that holds an allocated array

c++ linux gcc c++11 unique-ptr

unique_ptr to a derived class as an argument to a function that takes a unique_ptr to a base class

How to pass std::unique_ptr around?

c++ c++11 unique-ptr

Does unique_ptr::release() call the destructor?

c++ unique-ptr

Why can a T* be passed in register, but a unique_ptr<T> cannot?

Why use std::make_unique in C++17?

c++ c++17 unique-ptr

error::make_unique is not a member of ‘std’

Why is shared_ptr<void> legal, while unique_ptr<void> is ill-formed?

How to declare std::unique_ptr and what is the use of it?

c++ pointers std unique-ptr

Does C++11 unique_ptr and shared_ptr able to convert to each other's type?

Copy constructor for a class with unique_ptr

c++ c++11 unique-ptr

How can I pass std::unique_ptr into a function

c++ c++11 unique-ptr