Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

c++0x std::shared_ptr vs. boost::shared_ptr

why allocate_shared and make_shared so slow

shared_ptr aliasing constructor

c++ c++11 shared-ptr

GCC codegen: What does pthread_create_key() have to do with std::shared_ptr copying?

Using luabind and std::shared_ptr with inheritance

c++ c++11 lua shared-ptr luabind

How to pass a default parameter for std::shared_ptr<PureVirtualClass>

Passing a std::shared_ptr<T> to a function that takes a std::shared_ptr<const T>?

c++ c++11 c++14 shared-ptr

Using shared_ptr in C interfaces?

c++ c shared-ptr

shared_ptr as class member

c++ boost shared-ptr

using shared_ptr to std::vector in range-based for loop

SWIG, boost shared pointers and inheritance

c++ python boost swig shared-ptr

Which is faster on Visual C++ 2010 - std::shared_ptr or boost::shared_ptr?

Casting shared_ptr<T> to shared_ptr<void>

c++ casting c++11 shared-ptr

Why is there no [] operator for std::shared_ptr? [duplicate]

shared_ptr and slicing

c++ shared-ptr

Can __restrict__ be applied to shared_ptr<T>?

incomplete type error on using boost::enable_shared_from_this

c++ shared-ptr

Storing an std::thread in C++11 smart pointer

Should I convert shared_ptr to weak_ptr when passed to a method?

c++ shared-ptr

What's the overhead from shared_ptr being thread-safe?