mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-22 16:47:18 +02:00
fix support for segmented iteration
[SVN r41093]
This commit is contained in:
@ -43,8 +43,8 @@ process_tree(Tree const &tree)
|
||||
using namespace fusion;
|
||||
using mpl::_;
|
||||
|
||||
typedef typename result_of::find_if_s<Tree const, is_same<_,short> >::type short_iter;
|
||||
typedef typename result_of::find_if_s<Tree const, is_same<_,float> >::type float_iter;
|
||||
typedef typename fusion::result_of::find_if_s<Tree const, is_same<_,short> >::type short_iter;
|
||||
typedef typename fusion::result_of::find_if_s<Tree const, is_same<_,float> >::type float_iter;
|
||||
|
||||
typedef iterator_range<short_iter, float_iter> slice_t;
|
||||
BOOST_STATIC_ASSERT(traits::is_segmented<slice_t>::value);
|
||||
|
Reference in New Issue
Block a user