Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in smart-pointers

C++ Use of deleted function error

c++ c++11 smart-pointers

Why is the size of a pointer to something on the heap larger than the size of a stack variable?

Is there a smart pointer that is automatically nulled when its target is destroyed in C++

Conditionally instantiate a template at run-time

Boost weak_ptr's in a multi-threaded program to implement a resource pool

Why would you pass a smart pointer as a function argument in C++?

std::unique_ptr constructor behaviour

Returning a unique_ptr from a class method C++0x

The difference between RAII and smart pointers in C++

c++ smart-pointers raii

Passing std::unique_ptr to helper function

Turning this raw pointer situation into a unique_ptr?

Is std::unique_ptr the wrong tool to allocate memory for an array?

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

c++ smart-pointers auto-ptr

Qt smart pointer equivalent to Boost::shared_ptr ?

Force deleting std::shared_ptr in C++

C++ Initialization list and memory alloc

Why I cant return Boost::Scoped_ptr from function?

Why can't a pointer be automatically converted into a unique_ptr when returning it?

Compiler doesn't fail when pushing back a std::unique_ptr into a std::vector