From 08c1e93fa36a49f49325a07fe91ff92c964c2b6c Mon Sep 17 00:00:00 2001 From: Chanho Park Date: Thu, 11 Dec 2014 18:55:56 +0900 Subject: Imported Upstream version 1.57.0 --- boost/fusion/algorithm/auxiliary/move.hpp | 89 +++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 boost/fusion/algorithm/auxiliary/move.hpp (limited to 'boost/fusion/algorithm/auxiliary/move.hpp') diff --git a/boost/fusion/algorithm/auxiliary/move.hpp b/boost/fusion/algorithm/auxiliary/move.hpp new file mode 100644 index 0000000000..688f54a9f2 --- /dev/null +++ b/boost/fusion/algorithm/auxiliary/move.hpp @@ -0,0 +1,89 @@ +/*============================================================================= + Copyright (c) 2001-2013 Joel de Guzman + + Distributed under the Boost Software License, Version 1.0. (See accompanying + file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +==============================================================================*/ +#if !defined(FUSION_MOVE_01192013_2225) +#define FUSION_MOVE_01192013_2225 + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#if defined (BOOST_MSVC) +# pragma warning(push) +# pragma warning (disable: 4100) // unreferenced formal parameter +#endif + +namespace boost { namespace fusion +{ + namespace detail + { + template + struct sequence_move + { + typedef typename result_of::end::type end1_type; + typedef typename result_of::end::type end2_type; + + template + BOOST_FUSION_GPU_ENABLED + static void + call(I1 const&, I2 const&, mpl::true_) + { + } + + template + BOOST_FUSION_GPU_ENABLED + static void + call(I1 const& src, I2 const& dest, mpl::false_) + { + *dest = std::move(*src); + call(fusion::next(src), fusion::next(dest)); + } + + template + BOOST_FUSION_GPU_ENABLED + static void + call(I1 const& src, I2 const& dest) + { + typename result_of::equal_to::type eq; + return call(src, dest, eq); + } + }; + } + + template + BOOST_FUSION_GPU_ENABLED + inline + typename + enable_if_c< + type_traits::ice_and< + traits::is_sequence::value + , traits::is_sequence::value + >::value, + void + >::type + move(Seq1&& src, Seq2& dest) + { + BOOST_STATIC_ASSERT( + result_of::size::value <= result_of::size::value); + + detail::sequence_move< + Seq1, Seq2>:: + call(fusion::begin(src), fusion::begin(dest)); + } +}} + +#if defined (BOOST_MSVC) +# pragma warning(pop) +#endif + +#endif -- cgit v1.2.3