From 63045e86113112d0df3867b018a8346eb47689c6 Mon Sep 17 00:00:00 2001 From: Joel de Guzman Date: Sat, 15 Nov 2014 09:54:21 +0800 Subject: [PATCH] remove unnecessary actor to tighten ADL resolution. the one above it is sufficient. --- include/boost/fusion/support/pair.hpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/include/boost/fusion/support/pair.hpp b/include/boost/fusion/support/pair.hpp index 97cac3c7..a01b79bd 100644 --- a/include/boost/fusion/support/pair.hpp +++ b/include/boost/fusion/support/pair.hpp @@ -48,16 +48,6 @@ namespace boost { namespace fusion pair(typename detail::call_param::type val) : second(val) {} -#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) - - template - BOOST_FUSION_GPU_ENABLED - explicit pair(Second2&& val - , typename boost::enable_if >::type* /*dummy*/ = 0 - ) : second(std::forward(val)) {} - -#endif - template BOOST_FUSION_GPU_ENABLED pair(pair const& rhs)