[Ipstream-devel] IPSocket/test/tcp TCPCl_test.cpp,1.16,1.17
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/tcp In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv12407/test/tcp Modified Files: TCPCl_test.cpp Log Message: <strstream> removed Index: TCPCl_test.cpp =================================================================== RCS file: /cvsroot/ipstream/IPSocket/test/tcp/TCPCl_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** TCPCl_test.cpp 9 Aug 2006 15:33:00 -0000 1.16 --- TCPCl_test.cpp 18 Mar 2010 01:36:57 -0000 1.17 *************** *** 14,18 **** #include <iostream> ! #include <strstream> #include "../port_processors/SerialArray.h" --- 14,18 ---- #include <iostream> ! #include <sstream> #include "../port_processors/SerialArray.h" *************** *** 247,254 **** // Pump our output string ! strstream OutStream; for ( unsigned int uiCount = 0; uiCount < 1000 ; ++uiCount ) OutStream << strSend; // Put end of line --- 247,256 ---- // Pump our output string ! ostringstream OutStream; for ( unsigned int uiCount = 0; uiCount < 1000 ; ++uiCount ) + { OutStream << strSend; + } // Put end of line |