Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in smart-pointers

What does std::make_unique_for_overwrite() do vis-a-vis std::make_unique()?

c++ smart-pointers c++20

Reassigning Smart Pointers

using custom deleter with unique_ptr

c++ smart-pointers

Is it OK to derive from std::enable_shared_from_this and an abstract base class?

c++ smart-pointers

Move ownership from std::shared_ptr to std::unique_ptr

When should we use std::enable_shared_from_this

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?