Why there is default move constructor or assignment operator not created for derived classes? To demonstrate what I mean; having this setup code:

#include <utility>

struct A
{
  A () { }
  A (A&&) { throw 0; }
  A& operator= (A&&) { throw 0; }
};

struct B : A
{ };

either of the following lines throws:

A  x (std::move (A ());
A  x;  x = A ();

but neither of the following does:

B  x (std::move (B ());
B  x;  x = B ();

In case it matters, I tested with GCC 4.4.

EDIT: Later test with GCC 4.5 showed the same behavior.

link|improve this question

67% accept rate
1  
Does the std::move change anything here? Isn't A() already an rvalue? – Mike Dinsdale Apr 22 '10 at 21:11
Yes, it does. Otherwise C++ standard allows compiler to compress that into just-construct-x (or so I was told on freenode.net). I also verified that without std::move the move constructor is not trigerred, so freenode.net's comment appears to be true. – doublep Apr 22 '10 at 21:19
2  
@Mike: Copy elision (12.8/34, 0x FCD) is a common optimization, but using move() makes this expression fall outside the permitted circumstances. – Roger Pate Apr 22 '10 at 21:34
Ah, yes you're right! So it's still a move in the sense that the move ctor needs to be accessible, but the actual call gets elided, just like a call to the copy ctor would. Thanks for the clarification! – Mike Dinsdale Apr 22 '10 at 21:40
feedback

1 Answer

up vote 6 down vote accepted

Reading through 12.8 in the 0x FCD (12.8/17 in particular for the move ctor), this appears to be a GCC bug. I see the same thing happening in 4.5 as you do in 4.4.

I may be missing a corner case on deleted functions, or something similar, but I don't see any indication of that yet.

link|improve this answer
Just tested with 4.5, I get the same results. Can you test on any other compiler? (Given that C++0x is in no way finished, it might be not a bug but rather an outdated behavior, by the way.) – doublep Apr 22 '10 at 21:15
3  
A bunch of stuff in 12.8 (originating in N3053) isn't supported in gcc yet, according to their C++0x support page - could this be the issue? – Mike Dinsdale Apr 22 '10 at 21:21
@Mike: Looks like it, yes. – Roger Pate Apr 22 '10 at 21:23
@douplep: If the goal is to support what the 0x FCD says, then it's a bug even if it originates from outdated behavior. :) – Roger Pate Apr 22 '10 at 21:25
1  
@Roger: It turned out I had an outdated draft, so I didn't quite understand your answer. After reading the clause you mentioned in the current draft it is clear. Thank you. – doublep Apr 23 '10 at 16:53
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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