Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r76791 - in branches/release/boost/fusion: . view/iterator_range/detail
From: joel_at_[hidden]
Date: 2012-01-29 19:13:38


Author: djowel
Date: 2012-01-29 19:13:38 EST (Sun, 29 Jan 2012)
New Revision: 76791
URL: http://svn.boost.org/trac/boost/changeset/76791

Log:
Fix missed merge from 6338
Properties modified:
   branches/release/boost/fusion/ (props changed)
Text files modified:
   branches/release/boost/fusion/view/iterator_range/detail/at_impl.hpp | 2 +-
   branches/release/boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp | 7 +++++++
   2 files changed, 8 insertions(+), 1 deletions(-)

Modified: branches/release/boost/fusion/view/iterator_range/detail/at_impl.hpp
==============================================================================
--- branches/release/boost/fusion/view/iterator_range/detail/at_impl.hpp (original)
+++ branches/release/boost/fusion/view/iterator_range/detail/at_impl.hpp 2012-01-29 19:13:38 EST (Sun, 29 Jan 2012)
@@ -33,7 +33,7 @@
                 static type
                 call(Seq& s)
                 {
- return * advance<N>(s.first);
+ return * fusion::advance<N>(s.first);
                 }
             };
         };

Modified: branches/release/boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp
==============================================================================
--- branches/release/boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp (original)
+++ branches/release/boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp 2012-01-29 19:13:38 EST (Sun, 29 Jan 2012)
@@ -39,11 +39,18 @@
     {
         template <typename Sequence, typename T>
         struct push_back;
+
+ template <typename Sequence, typename T>
+ struct push_front;
     }
 
     template <typename Sequence, typename T>
     typename result_of::push_back<Sequence const, T>::type
     push_back(Sequence const& seq, T const& x);
+
+ template <typename Sequence, typename T>
+ typename result_of::push_front<Sequence const, T>::type
+ push_front(Sequence const& seq, T const& x);
 }}
 
 namespace boost { namespace fusion { namespace detail


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk