forked from boostorg/fusion
Use call_param for deducing type better.
This commit is contained in:
@ -122,7 +122,8 @@ namespace boost { namespace fusion
|
||||
#endif
|
||||
|
||||
BOOST_FUSION_GPU_ENABLED
|
||||
explicit deque(Head const& head, Tail const&... tail)
|
||||
explicit deque(typename detail::call_param<Head>::type head
|
||||
, typename detail::call_param<Tail>::type... tail)
|
||||
: base(detail::deque_keyed_values<Head, Tail...>::construct(head, tail...))
|
||||
{}
|
||||
|
||||
|
Reference in New Issue
Block a user