/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/ignore.hpp (1129B)
/*============================================================================= Copyright (c) 2001 Doug Gregor Copyright (c) 1999-2003 Jaakko Jarvi Copyright (c) 2001-2011 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_IGNORE_07192005_0329) #define FUSION_IGNORE_07192005_0329 #include namespace boost { namespace fusion { // Swallows any assignment (by Doug Gregor) namespace detail { struct swallow_assign { template BOOST_FUSION_CONSTEXPR_THIS BOOST_FUSION_GPU_ENABLED swallow_assign const& operator=(const T&) const { return *this; } }; } // "ignore" allows tuple positions to be ignored when using "tie". BOOST_CONSTEXPR_OR_CONST detail::swallow_assign ignore = detail::swallow_assign(); }} #endif