[Bug c++/48728] cannot construct a vector of unique_ptr from an initializer list
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48728 Paolo Carlini changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|
[Bug c++/48728] cannot construct a vector of unique_ptr from an initializer list
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48728 --- Comment #1 from Jonathan Wakely 2011-04-22 16:16:26 UTC --- See Table 100 in the FDIS, X(il) is equivalent to X(il.begin(), il.end()) and those functions return a const T*, which cannot be moved, so I think the library is correct and this bug