Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in smart-pointers

How to perform a dynamic_cast with a unique_ptr?

shared_ptr vs scoped_ptr

Why does unique_ptr instantiation compile to larger binary than raw pointer?

c++ assembly smart-pointers

How to initialize std::unique_ptr in constructor?

Is the Rule of 5 (for constructors and destructors) outdated?

What is the best smart pointer return type for a factory function?

How to enable_shared_from_this of both parent and derived

c++ boost smart-pointers

How to pass deleter to make_shared?

Use of observer_ptr

c++ smart-pointers c++17

Recommended usage of std::unique_ptr [duplicate]

Passing unique_ptr to functions

How to get the Object being pointed by a shared pointer?

Bad practice to return unique_ptr for raw pointer like ownership semantics?

Can Google Mock a method with a smart pointer return type?

Smart pointers/safe memory management for C?

Dynamic casting for unique_ptr

creating a shared_ptr from unique_ptr

smart pointers and arrays

c++ c++11 smart-pointers

C++11: Replace all non-owning raw pointers with std::shared_ptr()?

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