$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [move] Library uploaded to sandbox
From: vicente.botet (vicente.botet_at_[hidden])
Date: 2009-02-21 19:00:59
----- Original Message -----
From: "Mathias Gaunard" <mathias.gaunard_at_[hidden]>
To: <boost_at_[hidden]>
Sent: Saturday, February 21, 2009 9:28 PM
Subject: Re: [boost] [move] Library uploaded to sandbox
>
> vicente.botet wrote:
>> [...]
>> With this implicit conversion the
>>
>> Derived(BOOST_RV_REF(Derived) x) // Move ctor
>> : Base(boost::move(static_cast<Base&>(x))),
>> mem_(boost::move(x.mem_)) { }
>>
>> could be
>>
>> Derived(BOOST_RV_REF(Derived) x) // Move ctor
>> : Base(x),
>> mem_(boost::move(x.mem_)) { }
>>
>> What do you think?
>
> I think that is not what rvalue references do.
Do you mean that Derived&& is not convertible to Base&&?
Vicente