/usr/include/boost/fusion/support/detail
NameSizeModeActions
access.hpp14530644editdlrm
and.hpp18380644editdlrm
as_fusion_element.hpp14780644editdlrm
enabler.hpp6400644editdlrm
index_sequence.hpp23910644editdlrm
is_mpl_sequence.hpp9570644editdlrm
is_native_fusion_sequence.hpp9470644editdlrm
is_same_size.hpp10840644editdlrm
mpl_iterator_category.hpp17540644editdlrm
pp_round.hpp30490644editdlrm
segmented_fold_until_impl.hpp137100644editdlrm
Edit: /usr/include/boost/fusion/support/detail/as_fusion_element.hpp (1478B)
/*============================================================================= 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_AS_FUSION_ELEMENT_05052005_0338) #define FUSION_AS_FUSION_ELEMENT_05052005_0338 #include #include #ifndef BOOST_NO_CXX11_HDR_FUNCTIONAL #include #endif namespace boost { namespace fusion { namespace detail { template struct as_fusion_element { typedef T type; }; template struct as_fusion_element > { typedef T& type; }; #ifndef BOOST_NO_CXX11_HDR_FUNCTIONAL template struct as_fusion_element > { typedef T& type; }; #endif template struct as_fusion_element { typedef const T(&type)[N]; }; template struct as_fusion_element { typedef const volatile T(&type)[N]; }; template struct as_fusion_element { typedef const volatile T(&type)[N]; }; }}} #endif