Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in smart-pointers

How do I wrap a C++ function that returns a smart pointer in C?

c++ c wrapper smart-pointers

Smart pointers as map key

Dependency injection in C++11 without raw pointers

std::make_unique<T> vs reset(new T)

Do boost::shared_ptr<T> and boost::shared_ptr<const T> share the reference count?

scoped_ptr ownership [duplicate]

c++ smart-pointers

Printing unique_ptr to cout

Array of polymorphic objects

Is there an operation for Rc or Arc which clones the underlying value and returns it to the caller?

C++: would universal use of shared_ptr<> be equivalent to a gc?

STL class for reference-counted pointers?

Once you've adopted boost's smart pointers, is there any case where you use raw pointers?

c++ boost smart-pointers

Doesn't get() break the idea behind std::unique_ptr?

c++ c++11 smart-pointers

What is the best way to implement smart pointers in C++?

Is there a C++/CLI smart pointer project (e.g. scoped_ptr)?

c++-cli smart-pointers

Smart pointers and dynamic_cast

Returning member unique_ptr from class method

c++ c++11 smart-pointers rvo

smart pointers not working with Android NDK r8

Issue with std::shared_ptr, inheritance, and template argument deduction

How to access value in RefCell properly