
22 Oct
2011
22 Oct
'11
10:37 p.m.
El 22/10/2011 22:32, Howard Hinnant escribió:
On Oct 22, 2011, at 1:53 PM, Ion Gaztañaga wrote:
I don't know if is_default_constructible<std::vector<T>> should be false because T might not be MoveConstructible.
std::vector<T> is always default constructible because this constructor places no requirements on T.
thanks Howard, I missed that now vector can have just EmplaceInsertable or just DefaultConstructible objects. best, Ion