From 5114d9419e50d54fb2b8cbc6ba40e031b12fede1 Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Wed, 7 Oct 2015 17:40:55 +0900 Subject: [PATCH] Drop unnecessary ctor. --- include/boost/fusion/container/set/set.hpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/include/boost/fusion/container/set/set.hpp b/include/boost/fusion/container/set/set.hpp index 8d5cc13b..df87c495 100644 --- a/include/boost/fusion/container/set/set.hpp +++ b/include/boost/fusion/container/set/set.hpp @@ -100,13 +100,8 @@ namespace boost { namespace fusion set(Sequence&& rhs) : data(std::forward(rhs)) {} - BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED - explicit - set(typename detail::call_param::type ...args) - : data(args...) {} - template - BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED + BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED explicit set(U&& ...args) : data(std::forward(args)...) {}