/usr/include/boost/fusion/container/generation
NameSizeModeActions
detail/-0755rm
cons_tie.hpp12400644editdlrm
deque_tie.hpp13160644editdlrm
ignore.hpp11290644editdlrm
list_tie.hpp12140644editdlrm
make_cons.hpp14690644editdlrm
make_deque.hpp14310644editdlrm
make_list.hpp13890644editdlrm
make_map.hpp18750644editdlrm
make_set.hpp16860644editdlrm
make_vector.hpp17190644editdlrm
map_tie.hpp14650644editdlrm
pair_tie.hpp14030644editdlrm
vector_tie.hpp12440644editdlrm
Edit: /usr/include/boost/fusion/container/generation/deque_tie.hpp (1316B)
/*============================================================================= 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