mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-16 05:42:20 +02:00
continue great segmented Fusion reorg
[SVN r73834]
This commit is contained in:
20
test/Jamfile
20
test/Jamfile
@ -154,18 +154,18 @@ import testing ;
|
||||
# Text for extension features, must be explicitly specified on the command line to be run
|
||||
# TODO these are not in a test-suite because currently test-suites cannot be marked "explicit"
|
||||
|
||||
run algorithm/ext_/for_each_s.cpp ;
|
||||
explicit for_each_s ;
|
||||
run algorithm/segmented_for_each.cpp ;
|
||||
explicit segmented_for_each ;
|
||||
|
||||
run algorithm/ext_/find_s.cpp ;
|
||||
explicit find_s ;
|
||||
run algorithm/segmented_find.cpp ;
|
||||
explicit segmented_find ;
|
||||
|
||||
run algorithm/ext_/find_if_s.cpp ;
|
||||
explicit find_if_s ;
|
||||
run algorithm/segmented_find_if.cpp ;
|
||||
explicit segmented_find_if ;
|
||||
|
||||
run algorithm/ext_/fold_s.cpp ;
|
||||
explicit fold_s ;
|
||||
run algorithm/segmented_fold.cpp ;
|
||||
explicit segmented_fold ;
|
||||
|
||||
run sequence/ext_/iterator_range_s.cpp ;
|
||||
explicit iterator_range_s ;
|
||||
run sequence/segmented_iterator_range.cpp ;
|
||||
explicit segmented_iterator_range ;
|
||||
}
|
||||
|
@ -8,8 +8,8 @@
|
||||
#include <boost/detail/lightweight_test.hpp>
|
||||
#include <boost/fusion/container/vector/vector.hpp>
|
||||
#include <boost/fusion/algorithm/query/ext_/find_s.hpp>
|
||||
#include <boost/fusion/container/ext_/tree.hpp>
|
||||
#include <boost/fusion/container/generation/make_vector.hpp>
|
||||
#include "../sequence/tree.hpp"
|
||||
|
||||
struct not_there {};
|
||||
|
@ -8,10 +8,10 @@
|
||||
#include <boost/detail/lightweight_test.hpp>
|
||||
#include <boost/fusion/container/vector/vector.hpp>
|
||||
#include <boost/fusion/algorithm/query/ext_/find_if_s.hpp>
|
||||
#include <boost/fusion/container/ext_/tree.hpp>
|
||||
#include <boost/fusion/container/generation/make_vector.hpp>
|
||||
#include <boost/mpl/placeholders.hpp>
|
||||
#include <boost/type_traits/is_same.hpp>
|
||||
#include "../sequence/tree.hpp"
|
||||
|
||||
struct not_there {};
|
||||
|
@ -10,8 +10,8 @@
|
||||
#include <boost/detail/lightweight_test.hpp>
|
||||
#include <boost/fusion/container/vector/vector.hpp>
|
||||
#include <boost/fusion/algorithm/iteration/ext_/fold_s.hpp>
|
||||
#include <boost/fusion/container/ext_/tree.hpp>
|
||||
#include <boost/fusion/container/generation/make_vector.hpp>
|
||||
#include "../sequence/tree.hpp"
|
||||
|
||||
struct write_string
|
||||
{
|
@ -9,7 +9,7 @@
|
||||
#include <boost/fusion/container/vector/vector.hpp>
|
||||
#include <boost/fusion/algorithm/iteration/ext_/for_each_s.hpp>
|
||||
#include <boost/fusion/container/generation/make_vector.hpp>
|
||||
#include <boost/fusion/container/ext_/tree.hpp>
|
||||
#include "../sequence/tree.hpp"
|
||||
|
||||
struct print
|
||||
{
|
@ -5,11 +5,11 @@
|
||||
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)
|
||||
==============================================================================*/
|
||||
#include <sstream>
|
||||
#include <boost/detail/lightweight_test.hpp>
|
||||
#include <boost/fusion/algorithm/iteration/ext_/for_each_s.hpp>
|
||||
#include <boost/fusion/algorithm/query/ext_/find_if_s.hpp>
|
||||
#include <boost/fusion/container/vector/vector.hpp>
|
||||
#include <boost/fusion/container/ext_/tree.hpp>
|
||||
#include <boost/fusion/container/generation/make_vector.hpp>
|
||||
#include <boost/fusion/view/iterator_range/iterator_range.hpp>
|
||||
#include <boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp>
|
||||
@ -20,7 +20,7 @@
|
||||
#include <boost/mpl/begin.hpp>
|
||||
#include <boost/mpl/next.hpp>
|
||||
#include <boost/static_assert.hpp>
|
||||
#include <sstream>
|
||||
#include "tree.hpp"
|
||||
|
||||
struct ostream_fun
|
||||
{
|
Reference in New Issue
Block a user