[Ipstream-devel] IPSocket/test/udp UDPCl_test.cpp,1.11,1.12
Status: Beta
Brought to you by:
kontramot
|
From: Sergey V. B. <kon...@us...> - 2010-03-18 01:37:06
|
Update of /cvsroot/ipstream/IPSocket/test/udp In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv12407/test/udp Modified Files: UDPCl_test.cpp Log Message: <strstream> removed Index: UDPCl_test.cpp =================================================================== RCS file: /cvsroot/ipstream/IPSocket/test/udp/UDPCl_test.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** UDPCl_test.cpp 15 Nov 2005 21:15:10 -0000 1.11 --- UDPCl_test.cpp 18 Mar 2010 01:36:57 -0000 1.12 *************** *** 16,20 **** #include <iostream> ! #include <strstream> using namespace std; --- 16,20 ---- #include <iostream> ! #include <sstream> using namespace std; *************** *** 127,134 **** ////// // Pump our output string ! strstream OutStream; for ( unsigned int uiCount = 0; uiCount < 1000 ; ++uiCount ) OutStream << strSend; // Put end of line --- 127,136 ---- ////// // Pump our output string ! ostringstream OutStream; for ( unsigned int uiCount = 0; uiCount < 1000 ; ++uiCount ) + { OutStream << strSend; + } // Put end of line |