forked from boostorg/fusion
gpu-enable functions
This commit is contained in:
committed by
Eric Niebler
parent
867c7e5dfb
commit
c4f9f0d1b6
@ -27,6 +27,7 @@
|
||||
|
||||
#define N BOOST_PP_ITERATION()
|
||||
|
||||
BOOST_FUSION_GPU_ENABLED
|
||||
#if N == 1
|
||||
explicit
|
||||
#endif
|
||||
@ -35,10 +36,12 @@
|
||||
: base_type(BOOST_PP_ENUM_PARAMS(N, _)) {}
|
||||
|
||||
template <BOOST_PP_ENUM_PARAMS(N, typename U)>
|
||||
BOOST_FUSION_GPU_ENABLED
|
||||
tuple(tuple<BOOST_PP_ENUM_PARAMS(N, U)> const& rhs)
|
||||
: base_type(rhs) {}
|
||||
|
||||
template <BOOST_PP_ENUM_PARAMS(N, typename U)>
|
||||
BOOST_FUSION_GPU_ENABLED
|
||||
tuple& operator=(tuple<BOOST_PP_ENUM_PARAMS(N, U)> const& rhs)
|
||||
{
|
||||
base_type::operator=(rhs);
|
||||
|
Reference in New Issue
Block a user