Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in smart-pointers

Questions on usages of shared_ptr - C++

Smart pointers in Qt [duplicate]

c++ qt smart-pointers

Is it correct to return null shared_ptr?

Is there a recommended way to test if a smart pointer is null?

C++ Smart Pointer performance

c++ boost smart-pointers

How to break shared_ptr cyclic reference using weak_ptr

c++ smart-pointers c++03

Smart pointers in container like std::vector?

Atomic operations on `unique_ptr`

Find memory leaks caused by smart pointers

unique_ptr VS auto_ptr [duplicate]

c++ c++11 smart-pointers

Idiomatic use of std::auto_ptr or only use shared_ptr?

Should I use shared_ptr or unique_ptr? [duplicate]

What happens when using make_shared

What is boost's shared_ptr(shared_ptr<Y> const & r, T * p) used for?

Is it possible to use a C++ smart pointers together with C's malloc?

What is the difference between std::shared_ptr and std::experimental::atomic_shared_ptr?

enable_shared_from_this and inheritance

Does C++11 have wrappers for dynamically-allocated arrays like Boost's scoped_array?

does make_unique value initializes char array

How can unique_ptr have no overhead if it needs to store the deleter?