Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unique-ptr

When does it make sense to use unique_ptr with STL containers? (C++11)

Some std::unique_ptr uses and "gotchas"

Is std::unique_ptr an application of RAII?

c++ unique-ptr

STL Vector of Unique_ptr - How to reset?

c++ vector c++11 std unique-ptr

Error after trying to get unique_ptr element from vector

c++ vector unique-ptr

When should I return by value, as opposed to returning a unique pointer

c++ shared_ptr release ownership [duplicate]

c++ shared-ptr unique-ptr

singleton pattern and std::unique_ptr

c++ singleton unique-ptr

How to fill an array of unique_ptr?

What's with unique_ptr::get() instead of &*?

Why does Visual Studio compiler allow violation of private inheritance in this example?

Move `unique_ptr`s between sets

c++ containers unique-ptr

C++ std::unique_ptr stored inside std::map use of deleted function ill formed

c++ dictionary unique-ptr

Using automatic deduction with unique_ptr and custom deleter

C++11 non-owning reference/pointer to unique_ptr?

boost::variant; std::unique_ptr and copy

Add implicit conversion from unique_ptr<T> to T*

std::make_unique's (and emplace, emplace_back's) awkward deduction for initializer_list arguments

Use unique_ptr for ownership and raw pointer otherwise?

c++ c++11 unique-ptr ownership