Why is auto_ptr being deprecated?...
Read MoreC++: unique_ptr vs auto_ptr, and advantages of unique_ptr over auto_ptr?...
Read Moreauto_ptr or shared_ptr equivalent in managed C++/CLI classes...
Read MoreWarning linking libxml++-2.6 (c++11 obsoltes std::auto_ptr). Shall I just ignore it?...
Read Morec++ auto_ptr destroyed when passed into a function...
Read MoreUsing auto_ptr<std::ofstream> object...
Read MoreWhy unique_ptr works but auto_ptr doesn’t with STL...
Read More'auto_ptr' and STL containers: writing an example of erroneous usage...
Read MoreWhy is using a reference or unique pointer member of a class a bad thing?...
Read MorePassing an auto_ptr to a function effectively makes it a sink. Why?...
Read MoreMaking a non-object resource RAII-compliant...
Read MoreHow do I declare a dynamic array with std::auto_ptr?...
Read MoreWhat is the difference between *ptr and *ptr.get() when using auto_ptr?...
Read MoreWhy is it wrong to use std::auto_ptr<> with standard containers?...
Read MoreCreate a new object from existing pointer C++...
Read MoreIs get() reliable when an auto_ptr is uninitialized?...
Read MoreWhy auto_ptr initialization using the assignment syntax is not allowed...
Read MoreHow is std::auto_ptr initialized with a rvalue?...
Read Morewhy there are template copy constructor and override operator function in auto_ptr?...
Read MoreIs it wrong to use auto_ptr with new char[n]...
Read MoreMy Auto Pointer works even after ownership transfer...
Read MoreReference to a subset of a container object...
Read MoreWhat is the danger of passing an auto_ptr to a function expecting a constant reference to an auto_pt...
Read Moreno warning: ‘auto_ptr’ is deprecated only when auto_ptr used just once...
Read MoreIs it safe to initialize an auto_ptr with a pointer to a derived class?...
Read More"using" (or other mechanism) to swap in unique_ptr for auto_ptr in C++11?...
Read MoreDeletion of pointer to incomplete type and smart pointers...
Read More