Ticket #6067: segmented_iterator_range.hpp.patch

File segmented_iterator_range.hpp.patch, 759 bytes (added by Eric Niebler, 11 years ago)

Hack to solve the immediate problem

  • boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp

     
    3434{
    3535    template <typename First, typename Last>
    3636    struct iterator_range;
     37
     38    namespace result_of
     39    {
     40        template <typename Sequence, typename T>
     41        struct push_back;
     42    }
     43
     44    template <typename Sequence, typename T>
     45    typename result_of::push_back<Sequence const, T>::type
     46    push_back(Sequence const& seq, T const& x);
    3747}}
    3848
    3949namespace boost { namespace fusion { namespace detail