Update of /cvsroot/boost/boost/libs/iostreams/test/detail
In directory 
sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv19574/libs/iostreams/test/detail

Modified Files:
        filters.hpp 
Log Message:
Added Kim Barrett's patches that merge the changes from 1.33.1 into cvs HEAD.

Index: filters.hpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/iostreams/test/detail/filters.hpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- filters.hpp 20 May 2005 04:10:40 -0000      1.11
+++ filters.hpp 26 May 2007 12:42:44 -0000      1.12
@@ -160,7 +160,7 @@
     bool put(Sink& s, char c) { return boost::iostreams::put(s, c); }
 
     template<typename Device>
-    stream_offset seek(Device& d, stream_offset off, BOOST_IOS::seekdir way)
+    std::streampos seek(Device& d, stream_offset off, BOOST_IOS::seekdir way)
     { return boost::iostreams::seek(d, off, way); }
 };
 BOOST_IOSTREAMS_PIPABLE(identity_seekable_filter, 0)
@@ -173,7 +173,7 @@
     std::streamsize write(Sink& s, const char* buf, std::streamsize n)
     { return boost::iostreams::write(s, buf, n); }
     template<typename Device>
-    stream_offset seek(Device& d, stream_offset off, BOOST_IOS::seekdir way)
+    std::streampos seek(Device& d, stream_offset off, BOOST_IOS::seekdir way)
     { return boost::iostreams::seek(d, off, way); }
 };
 BOOST_IOSTREAMS_PIPABLE(identity_seekable_multichar_filter, 0)


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