mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-30 20:47:31 +02:00
Drop unnecessary ctor.
This commit is contained in:
@ -100,13 +100,8 @@ namespace boost { namespace fusion
|
|||||||
set(Sequence&& rhs)
|
set(Sequence&& rhs)
|
||||||
: data(std::forward<Sequence>(rhs)) {}
|
: data(std::forward<Sequence>(rhs)) {}
|
||||||
|
|
||||||
BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
|
|
||||||
explicit
|
|
||||||
set(typename detail::call_param<T>::type ...args)
|
|
||||||
: data(args...) {}
|
|
||||||
|
|
||||||
template <typename ...U>
|
template <typename ...U>
|
||||||
BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
|
BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
|
||||||
explicit
|
explicit
|
||||||
set(U&& ...args)
|
set(U&& ...args)
|
||||||
: data(std::forward<U>(args)...) {}
|
: data(std::forward<U>(args)...) {}
|
||||||
|
Reference in New Issue
Block a user