Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in smart-pointers

What's the point of "The World's Dumbest Smart Pointer?" [duplicate]

c++ smart-pointers c++17

unique_ptr and OpenSSL's STACK_OF(X509)*

boost::shared_ptr standard container

c++ smart-pointers std stdmap

Writing more general pointer code

c++ c++11 smart-pointers

Clone pattern for std::shared_ptr in C++

std::weak_ptr: lock or shared_ptr constructor?

If make_shared/make_unique can throw bad_alloc, why is it not a common practice to have a try catch block for it?

boost::ptr_container and std::vector<shared_ptr>

Benefits of using BOOST shared_array over shared_ptr

c++ boost smart-pointers

Changing boost::scoped_ptr to std::unique_ptr

std::shared_ptr operator [] equivalent access

c++ pointers smart-pointers

How to use unique_ptr with std::copy?

Qt: How to use Qt's Smartpointers

c++ qt c++11 smart-pointers

What is the advantage of a unique_ptr over a shared_ptr

How to reduce the implementation code of lots of wrapper classes?

Simple reference counting: smart pointers

Unit testing, mocking and unique_ptr

A simple implementation of Smart Pointer Class

Move Constructor and = operator for Shared Pointer

Are shared_ptr on static objects good?