Tagged Questions

3
votes
2answers
470 views

Are std::streams already movable?

GNU gcc 4.3 partially supports the upcoming c++0x standard: among the implemented features the rvalue reference. By means of the rvalue reference it should be possible to move a non-copyable object or ...
0
votes
3answers
184 views

rvalue references break when deep-returning

I've encountered a problem when passing returned rvalue references from a depth of more than 1. struct Data { std :: vector <int> data; Data () { data .push_back (1); }; Data (Data ...