Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

What's your convention for typedef'ing shared_ptr?

Segmentation fault when using a shared_ptr for private_key

What are potential dangers when using boost::shared_ptr?

c++ boost pointers shared-ptr

Are there any downsides with using make_shared to create a shared_ptr

c++ boost shared-ptr

shared_ptr: horrible speed

Should I use shared_ptr or unique_ptr

Is make_shared really more efficient than new?

Error: expected type-specifier before 'ClassName'

c++ shared-ptr pure-virtual

std::shared_ptr: reset() vs. assignment

c++ c++11 shared-ptr

std::shared_ptr thread safety

c++ std shared-ptr

NULL pointer with boost::shared_ptr?

std::shared_ptr initialization: make_shared<Foo>() vs shared_ptr<T>(new Foo) [duplicate]

getting a normal ptr from shared_ptr?

shared_from_this causing bad_weak_ptr

c++ boost shared-ptr c++-faq

The cost of passing by shared_ptr

c++ performance shared-ptr

Why isn't there a std::shared_ptr<T[]> specialisation?

c++ c++11 shared-ptr

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

Should I switch from using boost::shared_ptr to std::shared_ptr?

c++ boost stl c++11 shared-ptr

static_cast with boost::shared_ptr?

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