
22 Oct
2011
22 Oct
'11
8:32 p.m.
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. Howard