Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in smart-pointers

Vector with references to unique_ptr

c++ smart-pointers

Why did I get the: "Attempting to reference a deleted function" error after adding a vector with unique pointers to my header file?

How could one implement std::auto_ptr's copy constructor?

Qt::make_shared for creating QSharedPtr as std::make_shared for creating std::shared_ptr

c++ qt c++11 smart-pointers

Can I have non owning shared pointers?

Preventing header explosion in C++ (or C++0x)

How could one implement an observer_ptr?

c++ pointers smart-pointers

Advantages/disadvantages of auto pointers

c++ smart-pointers

Smart pointer wrapping penalty. Memoization with std::map

Can I get a raw pointer from boost's weak_ptr?

unique_ptr is not getting init with default deleter

c++ c++11 smart-pointers

Should I use smart pointers on everything and forget about classic normal pointers?

Should I use std::unique_ptr<T> in a std::vector member variable in my class?

C++ 11 Smart Pointer usage

Now that smart pointers exist, is it deprecated style to use C type pointers? [duplicate]

c++ c++11 smart-pointers

Expose the const and nonconst versions of begin() and end() to iterate member vector with smart pointer

Static method to create an object instead of constructor

Tracking down owner of a shared_ptr?