Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

How does the custom deleter of std::unique_ptr work?

unique_ptr boost equivalent?

c++ boost c++11 unique-ptr

shared_ptr<> is to weak_ptr<> as unique_ptr<> is to... what?

c++ c++11 unique-ptr

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

c++ c++11 g++ unique-ptr

remove unique_ptr from queue

c++ c++11 unique-ptr

Difference between boost::scoped_ptr<T> and std::unique_ptr<T>

c++ unique-ptr scoped-ptr

How do I use unique_ptr for pimpl?

"Downcasting" unique_ptr<Base> to unique_ptr<Derived>

Iterating through vector<unique_ptr<mytype>> using C++11 for() loops

c++ c++11 vector 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