Update of /cvsroot/cppunit/cppunit2/src/opentesttest
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32594/src/opentesttest
Modified Files:
packetstest.cpp
Log Message:
* Fixed msvc6 compilation issue
Index: packetstest.cpp
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/src/opentesttest/packetstest.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** packetstest.cpp 20 Jul 2005 21:06:51 -0000 1.2
--- packetstest.cpp 8 Aug 2005 22:12:37 -0000 1.3
***************
*** 24,28 ****
const char *begin = static_cast<const char *>( data_ );
return "length = " + CppTL::toString( length_ ) + "\ndata = "
! + quoteString( CppTL::ConstString( begin, begin + length_ ) );
}
--- 24,28 ----
const char *begin = static_cast<const char *>( data_ );
return "length = " + CppTL::toString( length_ ) + "\ndata = "
! + CppTL::quoteString( CppTL::ConstString( begin, begin + length_ ) );
}
|