Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in 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?

Smart pointer which can change ownership at runtime (C++)

Why is there no atomic_{store,load} for weak_ptr?

RAII in C++/CLI

c++-cli smart-pointers

Best way to delete a std::unique_ptr from a vector with a raw pointer?

How can I obtain an &A reference from a Rc<RefCell<A>>?

How to call other class' const member function via a std::unique_ptr member

weak_from_this() within constructor