Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

std::make_unique with null pointer?

c++ c++14 unique-ptr

C++0x unique_ptr misunderstanding?

c++ c++11 unique-ptr

C++ primer 5th edition: Difference between the deleter of a shared_ptr and of unique_ptr's

c++ shared-ptr unique-ptr

std::unique pointer and custom lambda deleter error

Is std::unique_ptr ABI-compatible with raw pointers?

How does unique_ptr support both "dot" and "arrow" invocation, and undefined methods?

c++ unique-ptr

unique_ptr constructor with rvalue deleter returns null?

c++ c++11 unique-ptr

Use of deleted function unique_ptr

c++ vector unique-ptr

Usage of this* in make_unique

Move unique_ptr: reset the source vs. destroy the old object

c++ move unique-ptr

How to delete an element of a vector when the containing object contains an unique_ptr?

How to correctly do the following: passing unique_ptr to lambda, then passing this lambda somewhere else

Insert unique_ptr in vector as pair

Multiple instances holds a reference to a unique_ptr

Can I rebind the deleter type for unique_ptr?

c++ c++11 stl unique-ptr

Does std::move invalidate a raw pointer obtained from unique_ptr::get()?

c++ unique-ptr

C++11 container of unique_ptr of forward declared class

Copying an object with a polymorphic member in C++