Update of /cvsroot/boost/boost/libs/xpressive/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23233/libs/xpressive/test

Modified Files:
        Jamfile.v2 proto_fusion.cpp 
Log Message:
work-arounds for gcc bugs and warnings

Index: Jamfile.v2
===================================================================
RCS file: /cvsroot/boost/boost/libs/xpressive/test/Jamfile.v2,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- Jamfile.v2  22 Oct 2006 03:28:00 -0000      1.13
+++ Jamfile.v2  22 Oct 2006 05:11:38 -0000      1.14
@@ -8,6 +8,8 @@
 project
     : requirements
         <toolset>intel:<debug-symbols>off
+        <toolset>msvc:<define>_SCL_SECURE_NO_DEPRECATE
+        <toolset>msvc:<define>_CRT_SECURE_NO_DEPRECATE
         <library>/boost/test//boost_unit_test_framework
         <link>static
     ;

Index: proto_fusion.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/xpressive/test/proto_fusion.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- proto_fusion.cpp    22 Oct 2006 03:28:00 -0000      1.1
+++ proto_fusion.cpp    22 Oct 2006 05:11:38 -0000      1.2
@@ -53,7 +53,7 @@
 //
 struct to_string
 {
-    to_string(std::stringstream &sout)
+    to_string(std::ostream &sout)
       : sout_(sout)
     {}
 
@@ -63,7 +63,7 @@
         this->sout_ << '(' << op << ')';
     }
 private:
-    std::stringstream &sout_;
+    std::ostream &sout_;
 };
 
 void test1()


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