forked from boostorg/fusion
doc updates + some more header tweaks
[SVN r40830]
This commit is contained in:
@ -33,7 +33,7 @@ namespace boost { namespace fusion
|
||||
|
||||
#define BOOST_FUSION_REF(z, n, data) BOOST_PP_CAT(T, n)&
|
||||
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/sequence/generation/deque_tie.hpp>
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/container/generation/deque_tie.hpp>
|
||||
#define BOOST_PP_ITERATION_LIMITS (1, FUSION_MAX_DEQUE_SIZE)
|
||||
#include BOOST_PP_ITERATE()
|
||||
|
@ -33,7 +33,7 @@ namespace boost { namespace fusion
|
||||
// $$$ shouldn't we remove_reference first to allow references? $$$
|
||||
#define BOOST_FUSION_REF(z, n, data) BOOST_PP_CAT(T, n)&
|
||||
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/sequence/generation/list_tie.hpp>
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/container/generation/list_tie.hpp>
|
||||
#define BOOST_PP_ITERATION_LIMITS (1, FUSION_MAX_LIST_SIZE)
|
||||
#include BOOST_PP_ITERATE()
|
||||
|
@ -52,7 +52,7 @@ namespace boost { namespace fusion
|
||||
#define BOOST_FUSION_AS_FUSION_ELEMENT(z, n, data) \
|
||||
typename detail::as_fusion_element<BOOST_PP_CAT(T, n)>::type
|
||||
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/sequence/generation/make_deque.hpp>
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/container/generation/make_deque.hpp>
|
||||
#define BOOST_PP_ITERATION_LIMITS (1, FUSION_MAX_DEQUE_SIZE)
|
||||
#include BOOST_PP_ITERATE()
|
||||
|
@ -45,7 +45,7 @@ namespace boost { namespace fusion
|
||||
#define BOOST_FUSION_AS_FUSION_ELEMENT(z, n, data) \
|
||||
typename detail::as_fusion_element<BOOST_PP_CAT(T, n)>::type
|
||||
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/sequence/generation/make_list.hpp>
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/container/generation/make_list.hpp>
|
||||
#define BOOST_PP_ITERATION_LIMITS (1, FUSION_MAX_LIST_SIZE)
|
||||
#include BOOST_PP_ITERATE()
|
||||
|
@ -53,7 +53,7 @@ namespace boost { namespace fusion
|
||||
#define BOOST_FUSION_MAKE_PAIR(z, n, data) \
|
||||
fusion::make_pair<BOOST_PP_CAT(K, n)>(BOOST_PP_CAT(_, n)) \
|
||||
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/sequence/generation/make_map.hpp>
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/container/generation/make_map.hpp>
|
||||
#define BOOST_PP_ITERATION_LIMITS (1, FUSION_MAX_VECTOR_SIZE)
|
||||
#include BOOST_PP_ITERATE()
|
||||
|
@ -46,7 +46,7 @@ namespace boost { namespace fusion
|
||||
#define BOOST_FUSION_AS_FUSION_ELEMENT(z, n, data) \
|
||||
typename detail::as_fusion_element<BOOST_PP_CAT(T, n)>::type
|
||||
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/sequence/generation/make_set.hpp>
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/container/generation/make_set.hpp>
|
||||
#define BOOST_PP_ITERATION_LIMITS (1, FUSION_MAX_VECTOR_SIZE)
|
||||
#include BOOST_PP_ITERATE()
|
||||
|
@ -45,7 +45,7 @@ namespace boost { namespace fusion
|
||||
#define BOOST_FUSION_AS_FUSION_ELEMENT(z, n, data) \
|
||||
typename detail::as_fusion_element<BOOST_PP_CAT(T, n)>::type
|
||||
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/sequence/generation/make_vector.hpp>
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/container/generation/make_vector.hpp>
|
||||
#define BOOST_PP_ITERATION_LIMITS (1, FUSION_MAX_VECTOR_SIZE)
|
||||
#include BOOST_PP_ITERATE()
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include <boost/fusion/container/map/map.hpp>
|
||||
#include <boost/fusion/container/map/limits.hpp>
|
||||
#include <boost/fusion/support/pair.hpp>
|
||||
#include <boost/fusion/sequence/generation/pair_tie.hpp>
|
||||
#include <boost/fusion/container/generation/pair_tie.hpp>
|
||||
#include <boost/type_traits/add_reference.hpp>
|
||||
|
||||
namespace boost { namespace fusion
|
||||
@ -56,7 +56,7 @@ namespace boost { namespace fusion
|
||||
#define BOOST_FUSION_PAIR_TIE(z, n, data) \
|
||||
fusion::pair_tie<BOOST_PP_CAT(K, n)>(BOOST_PP_CAT(_, n)) \
|
||||
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/sequence/generation/map_tie.hpp>
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/container/generation/map_tie.hpp>
|
||||
#define BOOST_PP_ITERATION_LIMITS (1, FUSION_MAX_MAP_SIZE)
|
||||
#include BOOST_PP_ITERATE()
|
||||
|
@ -32,7 +32,7 @@ namespace boost { namespace fusion
|
||||
|
||||
#define BOOST_FUSION_REF(z, n, data) BOOST_PP_CAT(T, n)&
|
||||
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/sequence/generation/vector_tie.hpp>
|
||||
#define BOOST_PP_FILENAME_1 <boost/fusion/container/generation/vector_tie.hpp>
|
||||
#define BOOST_PP_ITERATION_LIMITS (1, FUSION_MAX_VECTOR_SIZE)
|
||||
#include BOOST_PP_ITERATE()
|
||||
|
@ -7,6 +7,6 @@
|
||||
#if !defined(FUSION_INCLUDE_CONS_TIE)
|
||||
#define FUSION_INCLUDE_CONS_TIE
|
||||
|
||||
#include <boost/fusion/sequence/generation/cons_tie.hpp>
|
||||
#include <boost/fusion/container/generation/cons_tie.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -7,7 +7,7 @@
|
||||
#if !defined(FUSION_INCLUDE_GENERATION)
|
||||
#define FUSION_INCLUDE_GENERATION
|
||||
|
||||
#include <boost/fusion/sequence/generation.hpp>
|
||||
#include <boost/fusion/container/generation.hpp>
|
||||
#include <boost/fusion/functional/generation.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -7,7 +7,7 @@
|
||||
#if !defined(FUSION_INCLUDE_GENERATION)
|
||||
#define FUSION_INCLUDE_GENERATION
|
||||
|
||||
#include <boost/fusion/sequence/generation.hpp>
|
||||
#include <boost/fusion/container/generation.hpp>
|
||||
#include <boost/fusion/functional/generation.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -7,7 +7,7 @@
|
||||
#if !defined(FUSION_INCLUDE_GENERATION)
|
||||
#define FUSION_INCLUDE_GENERATION
|
||||
|
||||
#include <boost/fusion/sequence/generation.hpp>
|
||||
#include <boost/fusion/container/generation.hpp>
|
||||
#include <boost/fusion/functional/generation.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -7,7 +7,7 @@
|
||||
#if !defined(FUSION_INCLUDE_GENERATION)
|
||||
#define FUSION_INCLUDE_GENERATION
|
||||
|
||||
#include <boost/fusion/sequence/generation.hpp>
|
||||
#include <boost/fusion/container/generation.hpp>
|
||||
#include <boost/fusion/functional/generation.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -7,6 +7,6 @@
|
||||
#if !defined(FUSION_INCLUDE_MAKE_CONS)
|
||||
#define FUSION_INCLUDE_MAKE_CONS
|
||||
|
||||
#include <boost/fusion/sequence/generation/make_cons.hpp>
|
||||
#include <boost/fusion/container/generation/make_cons.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -7,6 +7,6 @@
|
||||
#if !defined(FUSION_INCLUDE_MAKE_DEQUE)
|
||||
#define FUSION_INCLUDE_MAKE_DEQUE
|
||||
|
||||
#include <boost/fusion/sequence/generation/make_deque.hpp>
|
||||
#include <boost/fusion/container/generation/make_deque.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -7,6 +7,6 @@
|
||||
#if !defined(FUSION_INCLUDE_MAKE_LIST)
|
||||
#define FUSION_INCLUDE_MAKE_LIST
|
||||
|
||||
#include <boost/fusion/sequence/generation/make_list.hpp>
|
||||
#include <boost/fusion/container/generation/make_list.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -7,6 +7,6 @@
|
||||
#if !defined(FUSION_INCLUDE_MAKE_MAP)
|
||||
#define FUSION_INCLUDE_MAKE_MAP
|
||||
|
||||
#include <boost/fusion/sequence/generation/make_map.hpp>
|
||||
#include <boost/fusion/container/generation/make_map.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -7,6 +7,6 @@
|
||||
#if !defined(FUSION_INCLUDE_MAKE_SET)
|
||||
#define FUSION_INCLUDE_MAKE_SET
|
||||
|
||||
#include <boost/fusion/sequence/generation/make_set.hpp>
|
||||
#include <boost/fusion/container/generation/make_set.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -7,6 +7,6 @@
|
||||
#if !defined(FUSION_INCLUDE_MAKE_VECTOR)
|
||||
#define FUSION_INCLUDE_MAKE_VECTOR
|
||||
|
||||
#include <boost/fusion/sequence/generation/make_vector.hpp>
|
||||
#include <boost/fusion/container/generation/make_vector.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -7,6 +7,6 @@
|
||||
#if !defined(FUSION_INCLUDE_MAP_TIE)
|
||||
#define FUSION_INCLUDE_MAP_TIE
|
||||
|
||||
#include <boost/fusion/sequence/generation/map_tie.hpp>
|
||||
#include <boost/fusion/container/generation/map_tie.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -7,6 +7,6 @@
|
||||
#if !defined(FUSION_INCLUDE_PAIR_TIE)
|
||||
#define FUSION_INCLUDE_PAIR_TIE
|
||||
|
||||
#include <boost/fusion/sequence/generation/pair_tie.hpp>
|
||||
#include <boost/fusion/container/generation/pair_tie.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -7,6 +7,6 @@
|
||||
#if !defined(FUSION_INCLUDE_VECTOR_TIE)
|
||||
#define FUSION_INCLUDE_VECTOR_TIE
|
||||
|
||||
#include <boost/fusion/sequence/generation/vector_tie.hpp>
|
||||
#include <boost/fusion/container/generation/vector_tie.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
#include <boost/fusion/sequence/sequence_facade.hpp>
|
||||
#include <boost/fusion/sequence/comparison.hpp>
|
||||
#include <boost/fusion/sequence/generation.hpp>
|
||||
#include <boost/fusion/container/generation.hpp>
|
||||
#include <boost/fusion/sequence/intrinsic.hpp>
|
||||
#include <boost/fusion/sequence/io.hpp>
|
||||
#include <boost/fusion/sequence/convert.hpp>
|
||||
|
@ -7,14 +7,14 @@
|
||||
#if !defined(FUSION_SEQUENCE_GENERATION_10022005_0615)
|
||||
#define FUSION_SEQUENCE_GENERATION_10022005_0615
|
||||
|
||||
#include <boost/fusion/sequence/generation/cons_tie.hpp>
|
||||
#include <boost/fusion/sequence/generation/ignore.hpp>
|
||||
#include <boost/fusion/sequence/generation/list_tie.hpp>
|
||||
#include <boost/fusion/sequence/generation/make_cons.hpp>
|
||||
#include <boost/fusion/sequence/generation/make_list.hpp>
|
||||
#include <boost/fusion/sequence/generation/make_map.hpp>
|
||||
#include <boost/fusion/sequence/generation/make_vector.hpp>
|
||||
#include <boost/fusion/sequence/generation/vector_tie.hpp>
|
||||
#include <boost/fusion/sequence/generation/make_set.hpp>
|
||||
#include <boost/fusion/container/generation/cons_tie.hpp>
|
||||
#include <boost/fusion/container/generation/ignore.hpp>
|
||||
#include <boost/fusion/container/generation/list_tie.hpp>
|
||||
#include <boost/fusion/container/generation/make_cons.hpp>
|
||||
#include <boost/fusion/container/generation/make_list.hpp>
|
||||
#include <boost/fusion/container/generation/make_map.hpp>
|
||||
#include <boost/fusion/container/generation/make_vector.hpp>
|
||||
#include <boost/fusion/container/generation/vector_tie.hpp>
|
||||
#include <boost/fusion/container/generation/make_set.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -10,6 +10,6 @@
|
||||
#include <boost/fusion/tuple/tuple.hpp>
|
||||
#include <boost/fusion/tuple/make_tuple.hpp>
|
||||
#include <boost/fusion/tuple/tuple_tie.hpp>
|
||||
#include <boost/fusion/sequence/generation/ignore.hpp>
|
||||
#include <boost/fusion/container/generation/ignore.hpp>
|
||||
|
||||
#endif
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include <boost/fusion/support/is_sequence.hpp>
|
||||
#include <boost/fusion/view/filter_view.hpp>
|
||||
#include <boost/fusion/container/list/cons.hpp> // for nil
|
||||
#include <boost/fusion/sequence/generation/make_cons.hpp>
|
||||
#include <boost/fusion/container/generation/make_cons.hpp>
|
||||
#include <boost/fusion/iterator/distance.hpp>
|
||||
#include <boost/fusion/sequence/intrinsic/ext_/segments.hpp>
|
||||
#include <boost/fusion/support/ext_/is_segmented.hpp>
|
||||
|
Reference in New Issue
Block a user