Update of /cvsroot/boost/boost/boost/wave/util
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15414

Modified Files:
        flex_string.hpp 
Log Message:
Fixed compilation problem.

Index: flex_string.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/wave/util/flex_string.hpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- flex_string.hpp     8 Mar 2007 02:15:14 -0000       1.13
+++ flex_string.hpp     12 Mar 2007 00:25:41 -0000      1.14
@@ -111,6 +111,17 @@
 
 namespace flex_string_details
 {
+    template <class InIt, class OutIt>
+    OutIt copy_n(InIt b, 
+        typename std::iterator_traits<InIt>::difference_type n, OutIt d)
+    {
+        for (/**/; n != 0; --n, ++b, ++d)
+        {
+            *d = *b;
+        }
+        return d;
+    }
+
     template <class Pod, class T>
     inline void pod_fill(Pod* b, Pod* e, T c)
     {


-------------------------------------------------------------------------
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