Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in auto-ptr

why there are template copy constructor and override operator function in auto_ptr?

c++ auto-ptr

How do I declare a dynamic array with std::auto_ptr?

c++ arrays auto-ptr

C++ -- Is there an implicit cast here from Fred* to auto_ptr<Fred>?

c++ smart-pointers auto-ptr

Should I explicitly zero initialize auto_ptr?

c++ auto-ptr

Can I create an array of auto_ptr?

Is this a fine std::auto_ptr<> use case?

c++ auto-ptr exception-safe

What is the difference between *ptr and *ptr.get() when using auto_ptr?

c++ smart-pointers auto-ptr

auto_ptr pointing to a dynamic array

c++ auto-ptr

auto_ptr in a class not returning from a source function

c++ auto-ptr

Why does unique_ptr have an overload for auto_ptr?

c++ c++11 unique-ptr auto-ptr

return value optimization vs auto_ptr for large vectors

c++ auto-ptr rvo

auto_ptr Traps and Pitfalls

c++ auto-ptr

Singleton pattern: different behavior of auto_ptr and unique_ptr

Returning a new object along with another value

c++ auto-ptr

Code Review question - should I allow this passing of an auto_ptr as parameter?

c++ coding-style auto-ptr

Letting go of auto_ptr

std::move vs std::auto_ptr?

Which kind of (auto) pointer to use?

c++ pointers auto-ptr

Delete raw pointer argument to boost::bind

The "most important const" vs. auto_ptr: Why the code does not compile?

c++ c++11 auto-ptr c++98