Update of /cvsroot/boost/boost/boost/fusion/sequence/view/iterator_range
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv28372

Modified Files:
        iterator_range.hpp 
Log Message:
iterator_range can't be more than a forward sequence, until we implement more 
intrinsics


Index: iterator_range.hpp
===================================================================
RCS file: 
/cvsroot/boost/boost/boost/fusion/sequence/view/iterator_range/iterator_range.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- iterator_range.hpp  2 Mar 2007 10:44:12 -0000       1.4
+++ iterator_range.hpp  16 Mar 2007 15:10:55 -0000      1.5
@@ -31,7 +31,9 @@
         typedef typename result_of::distance<begin_type, end_type>::type size;
         typedef mpl::true_ is_view;
 
-        typedef typename traits::category_of<begin_type>::type category;
+        typedef forward_traversal_tag category;
+        // typedef typename traits::category_of<begin_type>::type category;
+        // TODO: make it work - tosh
 
         iterator_range(First const& first, Last const& last)
             : first(convert_iterator<First>::call(first))


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to