std::unique_ptr is a smart pointer that retains sole ownership of an object through a pointer. unique_ptr is not copyable or copy-assignable, two instances of unique_ptr cannot manage the same object.

learn more… | top users | synonyms

-2
votes
0answers
50 views

C++ make_unique does not compile

I am using VS2012 with Intel C++ compiler and i'm really need make_unique for arrays, but when i try to compile implementations with variadic templates, it always say, that there are syntax errors. ...
1
vote
1answer
16 views

map of structs using unique ptr : does not build on visual but works on clang

I'm having these two simple codes : void f(){ std::map<int,std::unique_ptr<int>> map_; std::unique_ptr<int> p; map_[42] = std::move(p); } does build struct test_s{ ...
1
vote
1answer
39 views

uniq_ptr direct assignment

I have a function like this: unique_ptr<int> foo() { return unique_ptr<int>(new int[4]) } When calling this foo(), what I do is: unique_ptr<int> t = foo() I am wondering is ...
1
vote
1answer
52 views

Getting a unique_ptr out of a priority queue

I am maintaining a set of unique_ptr instances in a priority_queue. At some point, I want to get the first element and remove it from the queue. However, this always produces a compiler error. See ...
0
votes
1answer
39 views

Passing unique_ptr to non-member functions

I am having troble figuring our how to pass around my smart pointer. I call the function isIdentity on my matrix object h: void test(const size_t dim) { cout << "identity gen: " << ...
2
votes
1answer
88 views

Looping through a unique_ptr collection outside of an object

I'm trying to loop through a collection of pointers inside the object Baz from outside the class by having the class return an vector::iterator. When I run the for loop I get the following error: ...
1
vote
2answers
59 views

Should a pointer be the same before and after adding to a unique_ptr?

I have a std::vector of unique_ptrs and I'm happy to have them manage the life cycle of those objects. However I require storing other pointers to those objects for convenience. I know that once ...
7
votes
1answer
196 views

Why is `make_unique<T[N]>` disallowed?

Assume namespace std throughout. The C++14 committee draft N3690 defines std::make_unique thus: [n3690: 20.9.1.4]: unique_ptr creation    [unique.ptr.create] template ...
1
vote
3answers
58 views

Confirmation of thread safety with std::unique_ptr/std::shared_ptr

My application has an IRC module that essentially is a normal client. Since this is heavily threaded, I stand the risk of a plug-in retrieving, for example, a users nickname - it is valid at the time, ...
4
votes
1answer
88 views

How to pass const pointer to const object using unique_ptr

I want to pass a unique_ptr to a helper function, and I want to make sure that the helper function neither modifies the pointer, nor the pointed object. Without the unique_ptr, the solution is to have ...
-2
votes
2answers
85 views

Linked list with smart pointers

Out of boredom I've decided to mess around with the overused code: #include <iostream> #include <cassert> #include <memory> struct Node { Node* next; int val; }; int ...
3
votes
2answers
82 views

Sorting a list of objects holding a vector of unique_ptr

Is the following code supposed to produce compilation error according to C++11 (if so why?) or is it a problem with VC11? #include <vector> #include <list> #include <memory> struct ...
-2
votes
1answer
41 views

Unique pointer to stream

#include <memory> #include <istream> typedef std::unique_ptr<std::istream> myType; class myClass{ myType myStream; public: myClass(myType a_stream){ myStream = ...
2
votes
1answer
64 views

Indicating (non) transfer of ownership with unique_ptr

Suppose I have a class like this: class Node { public: Node(Node* parent = 0) : mParent(parent) {} virtual ~Node() { for(auto p : mChildren) delete p; } // Takes ownership ...
3
votes
1answer
102 views

Conversion to non-scalar type with std c++11 smart pointer

I am currently playing around with openscenegraph and it uses its own smart pointer. But I want to use the std c++11 smart pointer. now this is the working example code ...
2
votes
1answer
44 views

Deleter function for char pointer

I want to use a unique pointer on char pointer. I need to know in which cases a deleter function needs to be passed to unique_ptr. std::unique_ptr<char[]> pChar(new char [size]) And, ...
0
votes
2answers
53 views

One struct with unique_ptr fields but with different deleters

Using Visual Studio 2010, I have: using namespace std; struct C { unique_ptr<F1, default_delete<F1>> Field1; unique_ptr<F2, default_delete<F1>> Field2; ...
0
votes
2answers
81 views

QMap and std::unique_ptr

I am trying to prevent naked pointers, to prevent memory leaking etc. I also want to map int to INuiSensor*. Since I am also using Qt I tried to use QMap<int, std::unique_ptr<INuiSensor>> ...
3
votes
2answers
42 views

'&' requires l-value on &std::unique_ptr<>.get

I am trying to use the function NuiCreateSensorByIndex(int,INuiSensor**). I am trying not to use naked pointers, so I did std::unique_ptr<INuiSensor> nui; to make it an unique_ptr. Now I want to ...
3
votes
2answers
74 views

Why do both libstdc++ and libc++ not check for pointer and reference type D for the default unique_ptr constructor?

The standard says: D shall satisfy the requirements of DefaultConstructible (Table 19), and that construction shall not throw an exception. for both of these constructors: constexpr ...
5
votes
2answers
181 views

Providing an (empty) user-defined destructor causes compilation error

Code which compiles perfectly fine (on GCC 4.7.2) when I do not have a user-defined destructor, produces errors when even an empty user-defined destructor is provided: #include <memory> class ...
0
votes
2answers
88 views

Should I assign or reset a unique_ptr?

Given the common situation where the lifespan of an owned object is linked to its owner, I can use a unique pointer one of 2 ways . . It can be assigned: class owner { ...
3
votes
2answers
274 views

Copy constructor for a class with unique_ptr

How do I implement a copy constructor for a class that has a unique_ptr member variable? I am only considering C++11.
1
vote
1answer
94 views

Getter and setter for unique_ptr object (dependency injection)

I have a class MyClass that owns an instance of some DataProvider class and has a getter for this. For the sake of Dependency Injection I would prefer to have a getter and a setter. Additionally the ...
1
vote
4answers
116 views

singleton pattern and std::unique_ptr

std::unique_ptr uniquely controls the object it points to and, hence, does not utilize reference counting. A singleton ensures only one object may be created utilizing reference counting. Would then ...
5
votes
2answers
250 views

Temporary read-only copy of unique_ptr

I'm pretty new to C++11's smart pointers, and I'm trying to use them effectively in a project. In my project, I have a lot of functions that take a const reference to a vector of unique_ptr, do some ...
0
votes
3answers
112 views

std::unique_ptr custom deleter

Reference Well, how does the custom deleter of std::unique_ptr work? Constructor std::unique_ptr<ErrorHandling> error_; RecursiveDescentParser::RecursiveDescentParser(std::string inputStream, ...
4
votes
1answer
183 views

unique_ptr member, private copy constructor versus move constructor

Given a base class for multiple derived class, the goal was to create a wrapper class that allowed an STL container to see objects with the base interface, event though different derived classes may ...
1
vote
3answers
91 views

releasing memory to os after using large number of unique_ptr - c++

Not able to figure out what is happening wrong. Here is a simple code size_t n_elem = 30000000; //careful! will allocate 1GB with unique_ptr vector<unique_ptr<double> > tmp; ...
2
votes
1answer
154 views

boost::variant; std::unique_ptr and copy

This Question Determined That a Non-Copyable Type Can't Be Used With Boost Variant Tree class template <class T = int> class Tree{ private: class TreeNode{ public: ...
0
votes
2answers
143 views

Copy Constructors … A Quandary

I have a tree class that has move constructors and move assignment operators declared and defined. Why would the compiler feel the need to synthesize a copy constructor and then complain that ...
1
vote
1answer
95 views

C++11 - Copy construction of a smart pointer pointing to abstract type?

I like std::unique_ptr. It helps me out to prevent memory leaks, which is extremely useful. But there's one problem: copy assignment and construction is not allowed. Even though this restriction ...
29
votes
2answers
3k views

Using smart pointers for class members

I'm having trouble understanding the usage of smart pointers as class members in C++11. I have read a lot about smart pointers and I think I do understand how unique_ptr and shared_ptr/weak_ptr work ...
0
votes
1answer
122 views

C++ merge 2d arrays (reffed by uniqe_ptr) into 3d array

I need to merge three 2D arrays into a 3D one. I'm using unique_ptr to reference the 2D arrays. Im quite new to smart pointers and C++ in general, so chances are it's an obvious mistake. int ...
5
votes
3answers
98 views

Add an item in a container of smart pointers

Several ways to add an item in a container of smart pointers. I am wondering which way you will go for. class MyContainer { private: std::vector<std::unique_ptr<Item>> mItems; ...
16
votes
1answer
259 views

destructor and unique_ptr

I have the following code class A { public: A(){} ~A(){} private: std::vector<std::unique_ptr<double> > x; }; A f() { A a; return a; } int main() ...
0
votes
1answer
139 views

Recommended usage of std::unique_ptr [duplicate]

What are recommended uses of a std::unique_ptr as to specifically where, when, and how is it is best used? I discovered: About unique_ptr performances I already know: std::unique_ptr was ...
1
vote
1answer
150 views

C++11 - Possible dilemma with pimpl-idiom and unique_ptr?

As I was trying to take advantage of pimpl-idiom and smart pointers to implement my own wrapper around platform-specific GUI components, I encountered a problem I'm unable to solve. The problem is ...
17
votes
2answers
336 views

Lock-free swap of two unique_ptr<T>

Swapping two unique_ptrs is not guaranteed to be threadsafe. std::unique_ptr<T> a, b; std::swap(a, b); // not threadsafe Since I need atomic pointer swaps and since I like the ownership ...
2
votes
2answers
91 views

Function pointers that return C++11 unique_ptrs of parent classes

I am trying to create function pointers for functions that return unique_ptr instances. Each function should return a value that is as specifically-typed as possible in order to be generally useful to ...
0
votes
1answer
206 views

serialize is not a member of std::unique_ptr

Is this question more appropriate for Boost forums? The complete code is referenced below and I do not consider that I have incorrectly attempted to convert an auto_ptr serialization example into a ...
3
votes
4answers
102 views

Should my functions accept pointers or smart pointers?

I've started making use of std::unique_ptr e.g.: unique_ptr<TFile> myfile( TFile::Open("myfile.root") ); instead of TFile * myoldfile = TFile::Open("myoldfile.root") ; Now I'm not sure ...
2
votes
1answer
201 views

Using std::unique_ptr<void> with a custom deleter as a smart void*

I have a generic class myClass that sometimes needs to store extra state information depending on the use. This is normally done with a void*, but I was wondering if I could use a ...
2
votes
1answer
121 views

Doubly Linked List Using std::unique_ptr

Anyone suggest an implementation? I tried this at home the other day and discovered the move semantics too difficult to establish a prior link or a simple linked list. Easy if making a tree using ...
0
votes
5answers
225 views

Example of memory leak in c++ (by use of exceptions)

In C++ How to program there is a paragraph that say: A common programming practice is to allocate dynamic memory, assign the address of that memory to a pointer, use the pointer to manipulate ...
4
votes
1answer
162 views

Move ownership from std::shared_ptr to std::unique_ptr

I have a class A which has a field of type std::unique_ptr: class A { public: std::unique_ptr pointer; // class body }; And somewhere in code, I'm using few std::shared_ptrs which point to the ...
2
votes
2answers
121 views

How do I make only a single call to the move-constructor?

How do I make the code below only call the move-constructor once? OUTPUT MC MC CODE #include <vector> #include <map> #include <memory> #include <iostream> struct Bar { ...
0
votes
2answers
122 views

Prevent moving of a unique_ptr C++11

Is there any way to prevent a user to explicity take ownership of a unique pointer with std::move ?
-10
votes
1answer
138 views

error C2079: uses undefined class 'std::unique_ptr<_Ty>' [closed]

This error has been searched but inconclusive or misunderstood solutions. I have a class with an inner class. The outer class has a template defined with a single parameter. The intent is to use ...
1
vote
1answer
102 views

What is unique_ptr replacement for “visual studio 2008”, no 3-rd libraries (eg. boost)

Is there something like unique_ptr<> in Visual Studio 2008? Event Visual Studio only header is also OK. I want this feature but do not want to use 3-rd party lib. Since I am writing ...

1 2 3 4 5