If I pass the following code through my GCC 4.7 snapshot, it tries to copy the unique_ptrs into the vector.

#include <vector>
#include <memory>

int main() {
    using move_only = std::unique_ptr<int>;
    std::vector<move_only> v { move_only(), move_only(), move_only() };
}

Obviously that cannot work because std::unique_ptr is not copyable:

error: use of deleted function 'std::unique_ptr<_Tp, _Dp>::unique_ptr(const std::unique_ptr<_Tp, _Dp>&) [with _Tp = int; _Dp = std::default_delete; std::unique_ptr<_Tp, _Dp> = std::unique_ptr]'

Is GCC correct in trying to copy the pointers from the initializer list?

link|improve this question

What do you mean? What else would you suggest it try to do? – Lightness Races in Orbit Dec 12 '11 at 0:58
@Tomalak Move them? – R. Martinho Fernandes Dec 12 '11 at 1:00
@RMartinhoFernandes: Oh, right. By "obviously that cannot work" I thought you meant the code, not the trying-to-copy. Don't you have to use std::move in order to make this work? – Lightness Races in Orbit Dec 12 '11 at 1:02
@TomalakGeret'kal No, because the elements I'm using in the initialisation are all rvalues. I tried with std::move anyway, but no dice :( – R. Martinho Fernandes Dec 12 '11 at 1:05
@RMartinhoFernandes: OK. – Lightness Races in Orbit Dec 12 '11 at 1:13
feedback

2 Answers

up vote 10 down vote accepted

The synopsis of <initializer_list> in 18.9 makes it reasonably clear that elements of an initializer list are always passed via const-reference. Unfortunately, there does not appear to be any way of using move-semantic in initializer list elements in the current revision of the language.

Specifically, we have:

typedef const E& reference;
typedef const E& const_reference;

typedef const E* iterator;
typedef const E* const_iterator;

const E* begin() const noexcept; // first element
const E* end() const noexcept; // one past the last element
link|improve this answer
feedback

Edit: Since @Johannes doesn't seem to want to post the best solution as an answer, I'll just do it.

#include <iterator>
#include <vector>
#include <memory>

int main(){
  using move_only = std::unique_ptr<int>;
  move_only init[] = { move_only(), move_only(), move_only() };
  std::vector<move_only> v{std::make_move_iterator(std::begin(init)),
      std::make_move_iterator(std::end(init))};
}

The iterators returned by std::make_move_iterator will move the pointed-to element when being dereferenced.


Original answer: We're gonna utilize a little helper type here:

#include <utility>
#include <type_traits>

template<class T>
struct rref_wrapper
{ // CAUTION - very volatile, use with care
  explicit rref_wrapper(T&& v)
    : _val(std::move(v)) {}

  explicit operator T() const{
    return T{ std::move(_val) };
  }

private:
  T&& _val;
};

// only usable on temporaries
template<class T>
typename std::enable_if<
  !std::is_lvalue_reference<T>::value,
  rref_wrapper<T>
>::type rref(T&& v){
  return rref_wrapper<T>(std::move(v));
}

// lvalue reference can go away
template<class T>
void rref(T&) = delete;

Sadly, the straight-forward code here won't work:

std::vector<move_only> v{ rref(move_only()), rref(move_only()), rref(move_only()) };

Since the standard, for whatever reason, doesn't define a converting copy constructor like this:

// in class initializer_list
template<class U>
initializer_list(initializer_list<U> const& other);

The initializer_list<rref_wrapper<move_only>> created by the brace-init-list ({...}) won't convert to the initializer_list<move_only> that the vector<move_only> takes. So we need a two-step initialization here:

std::initializer_list<rref_wrapper<move_only>> il{ rref(move_only()),
                                                   rref(move_only()),
                                                   rref(move_only()) };
std::vector<move_only> v(il.begin(), il.end());
link|improve this answer
Ah... this is the rvalue analogue of std::ref, non? Maybe it should be called std::rref. – Kerrek SB Dec 12 '11 at 1:39
@Kerrek: Good point about the naming, changed it! :) – Xeo Dec 12 '11 at 1:41
IIRC you need an explicitly defined copy constructor in move_only, because the spec says that the copy constructor is defined as deleted if the class contains an rvalue reference member. EDIT: Ah NVM, rref_wrapper<T> is never copied in your case so it doesn't matter. – Johannes Schaub - litb Dec 12 '11 at 22:13
6  
Now, I guess this should not be left without being mentioned in a comment :) move_only m[] = { move_only(), move_only(), move_only() }; std::vector<move_only> v(std::make_move_iterator(m), std::make_move_iterator(m + 3));. – Johannes Schaub - litb Dec 12 '11 at 22:18
1  
@Johannes: Also, why isn't that an answer? :) – Xeo Dec 12 '11 at 22:43
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.