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

Modified Files:
        segmented_iterator.hpp 
Log Message:
some changes for conceptgcc-4.3

Index: segmented_iterator.hpp
===================================================================
RCS file: 
/cvsroot/boost/boost/boost/fusion/sequence/view/ext_/segmented_iterator.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- segmented_iterator.hpp      25 Oct 2006 05:27:43 -0000      1.2
+++ segmented_iterator.hpp      28 Apr 2007 21:22:55 -0000      1.3
@@ -78,16 +78,16 @@
 
             explicit segmented_range(Sequence &sequence_)
               : sequence(sequence_type(sequence_))
-              , where(fusion::begin(sequence))
+              , where_(fusion::begin(sequence))
             {}
 
-            segmented_range(sequence_type sequence_, iterator_type const 
&where_)
+            segmented_range(sequence_type sequence_, iterator_type const &wh)
               : sequence(sequence_)
-              , where(where_)
+              , where_(wh)
             {}
 
             sequence_type sequence;
-            iterator_type where;
+            iterator_type where_;
         };
     }
 
@@ -139,7 +139,7 @@
                 typedef typename Sequence::iterator_type type;
                 static type call(Sequence &seq)
                 {
-                    return seq.where;
+                    return seq.where_;
                 }
             };
         };
@@ -175,7 +175,7 @@
 
             static type call(segmented_range<Sequence, Iterator, IsSegmented> 
const &rng)
             {
-                return type(rng.sequence, fusion::next(rng.where));
+                return type(rng.sequence, fusion::next(rng.where_));
             }
         };
 


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to