/*============================================================================= 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_DEQUE_TIE_01272013_1401) #define FUSION_DEQUE_TIE_01272013_1401 #include #include #if !defined(BOOST_FUSION_HAS_VARIADIC_DEQUE) # include #else /////////////////////////////////////////////////////////////////////////////// // C++11 variadic interface /////////////////////////////////////////////////////////////////////////////// #include namespace boost { namespace fusion { struct void_; namespace result_of { template struct deque_tie { typedef deque type; }; } template BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED inline deque deque_tie(T&... arg) { return deque(arg...); } }} #endif #endif