Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in smart-pointers

Returning Smart Pointers

c++ weak_ptr expiring after dereference?

c++ smart-pointers weak-ptr

Why dereferencing a unique_ptr won't modify the original object

c++ pointers smart-pointers

What's correct way to remove a boost::shared_ptr from a list?

c++ stl boost smart-pointers

Manual Object Ownership vs Smart Pointers

segment fault for a simple std::shared_ptr construction case

Accessing object unique_ptr is pointing to

c++ smart-pointers

Why is `str` encapsulated inside `String` instead of inside a `Box<str>`?

string rust smart-pointers

Is it alright to return a reference to a non-pointer member variable as a pointer?

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?