Update of /cvsroot/boost/boost/boost/asio/detail
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5324

Modified Files:
        posix_fd_set_adapter.hpp 
Log Message:
Solaris defines FD_ZERO to use an unqualified call to memset, so we need to
make the function visible using 'using namespace std'.


Index: posix_fd_set_adapter.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/asio/detail/posix_fd_set_adapter.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- posix_fd_set_adapter.hpp    4 Jan 2007 05:53:00 -0000       1.2
+++ posix_fd_set_adapter.hpp    13 Feb 2007 07:15:36 -0000      1.3
@@ -32,6 +32,7 @@
   posix_fd_set_adapter()
     : max_descriptor_(invalid_socket)
   {
+    using namespace std; // Needed for memset on Solaris.
     FD_ZERO(&fd_set_);
   }
 


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to