Which is the right way to call base class move ctor?
this (works in MSVC2010, but not in CBuilder2010):
struct Foo
{
Foo(Foo&& other) { }
};
struct Bar : public Foo
{
Bar(Bar&& other) : Foo((Foo&&)other) { }
};
or (works in CBuilder2010, but not in MSVC2010):
struct Foo
{
Foo(Foo&& other) { }
};
struct Bar : public Foo
{
Bar(Bar&& other) : Foo(&other) { }
};
or, are they both wrong? If so, what's the right way (in terms of what's specified in the C++0x standards)?
Note: I can't figure out how to get it to work in CBuilderXE (both versions don't work).
Foo(&other)shouldn't compile, unless Foo has a ctor which takes a Foo pointer. – Roger Pate Nov 1 '10 at 13:25