mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-23 09:07:26 +02:00
Applied patch; refs #2823; will merge to release once tests cycle
[SVN r67745]
This commit is contained in:
@ -48,7 +48,8 @@ namespace boost { namespace fusion { namespace detail
|
|||||||
static type
|
static type
|
||||||
call(First const& f, Last const& l)
|
call(First const& f, Last const& l)
|
||||||
{
|
{
|
||||||
return type(*f, next_build_cons::call(fusion::next(f), l));
|
typename result_of::value_of<First>::type v = *f;
|
||||||
|
return type(v, next_build_cons::call(fusion::next(f), l));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user