Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in smart-pointers

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?

Error C2275 while creating a COM smart-pointer within "if" statement

c++ com smart-pointers

Smart pointer in global scope

c++ smart-pointers

Abstract Factory with parameterized constructors

C++0x unique_ptr replaces scoped_ptr taking ownership?

c++ smart-pointers c++11

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