Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in smart-pointers

boost smart pointer with custom deleter

c++ boost smart-pointers

What are the reasons for passing a pointers to a shared_ptr to a function?

C++,runtime error: member call on null pointer of type

Best practice for std::auto_ptr

c++ smart-pointers

Pimpl idiom using shared_ptr working with incomplete types

Initializing Unique Pointers as a Class Member

When should we use a custom deleter instead of the default deleter in a unique_ptr?

Get array of raw pointers from array of std::unique_ptr

c++ arrays smart-pointers

C++ Why it's not the same address (pointers)

How do I create a duplicate instance of object contained in a shared pointer in c++?

How does it convert _bstr_t to BSTR when passing as an argument?

The advantage of reference linking over reference counting when implementing smart pointer?

how to properly destroy c++ classes with smart pointers

"Use of deleted function" when calling `std::unique_ptr` move constructor?

Can a std::unique_ptr be reassigned such that its old value is destroyed *before* the new one is constructed?

Where is the reference count of an object typically stored?

c++ smart-pointers

What happens if a object to which a smart pointer is pointing to commits suicide?

c++11 smart-pointers

How to check if a std::unique_ptr is null, if it is in a std::vector?

how this auto_ptr program works and what it does?