From 1c51ad943ac66dbcb017ccbd4e19f87db25d82e1 Mon Sep 17 00:00:00 2001 From: Joel de Guzman Date: Sat, 31 Dec 2011 05:48:27 +0000 Subject: [PATCH] Fix for ticket #6338 [SVN r76238] --- .../iterator_range/detail/segmented_iterator_range.hpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp b/include/boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp index e5f5ed0b..489d9553 100644 --- a/include/boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp +++ b/include/boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp @@ -39,11 +39,18 @@ namespace boost { namespace fusion { template struct push_back; + + template + struct push_front; } template typename result_of::push_back::type push_back(Sequence const& seq, T const& x); + + template + typename result_of::push_front::type + push_front(Sequence const& seq, T const& x); }} namespace boost { namespace fusion { namespace detail