Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in smart-pointers

Cast boost::shared_array<char> to boost::shared_array<const char>

For a data member, is there any difference between dynamically allocating this variable(or not) if the containing object is already in dynamic memory?

c++ stl smart-pointers c++14

change pointer in std::unique_ptr without destroy it

c++ c++11 smart-pointers

SMART vector for RAW pointers in C++11?

c++ c++11 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