Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in smart-pointers

Implementing weak intrusive pointers in C++

Why does Glibmm/Gtkmm not include the unary dereferencing operator, *, for Glib::RefPtr?

Mixing C++ and Objective-C

C++0x Smart Pointer Comparisons: Inconsistent, what's the rationale?

How to use Boost's intrusive_ptr effectively?

unique_ptr's assignment operator copies a deleter stored by a reference. Is it a feature or a bug?

why weak_ptr can break cyclic reference?

c++ smart-pointers

Disadvantages of shared_ptr

Why does std::unique_ptr not have a const get method?

How to use C++ Smart Pointers?

c++ smart-pointers

Some questions about using CComPtr (when use Release()? Can I return CComPtr?, ...)

c++ com smart-pointers bho

Pointers and containers

Why does incomplete type of smart pointer data member and raw pointer data member have different behavior when their parent destruct?

c++ c++11 smart-pointers

Why does assignment operator call constructor?

C++11 smart pointers and polymorphism

Smart pointers - cases where they cannot replace raw pointers

c++ smart-pointers

vector<unique_ptr> resizing with push_back - how does it work?

C++ Iterating through a vector of smart pointers

c++ stl vector smart-pointers

Using unique_ptr to control a file descriptor

Why can't a smart pointer call new() for me in its constructor?