
22 May
2010
22 May
'10
10:50 a.m.
----- Original Message ----- From: "joel falcou" <joel.falcou@lri.fr> To: <boost@lists.boost.org> Sent: Sunday, May 16, 2010 5:45 PM Subject: Re: [boost] [Review] Formal Review: Boost.Move
vicente.botet wrote:
:( I have no tested it neither before posting. We have then the possibility to write
BOOST_RV_REF_2_TEMPL_ARGS(Tmpl, A1, A2)
or
typename rvalue_ref<Tmpl<A1,A2> >::type
I prefer to write code that doesn't use macros as far as it is possible.
As havign being bitten by this a lot of time, I found convenient to have specific macro for tempalte with N parameters and one for non-template type.
Do we realy need a macros or a metafunction such as rvalue_ref can be used. Best, Vicente