Update of /cvsroot/cppunit/cppunit2/include/cpput
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9070/include/cpput
Modified Files:
stringize.h
Log Message:
* use deprecated ostrstream if the standard one are not available.
Index: stringize.h
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/include/cpput/stringize.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** stringize.h 5 Mar 2005 12:41:18 -0000 1.4
--- stringize.h 5 Mar 2005 12:43:24 -0000 1.5
***************
*** 113,117 ****
std::ostrstream os;
os << value;
! return std::string( std::ostrstream::str(), pcount() );
# endif
}
--- 113,117 ----
std::ostrstream os;
os << value;
! return std::string( os.str(), os.pcount() );
# endif
}
|