[Cppunit-cvs] cppunit2/include/opentest serializer.h,1.9,1.10
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-11-09 22:59:16
|
Update of /cvsroot/cppunit/cppunit2/include/opentest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5189/include/opentest Modified Files: serializer.h Log Message: - removed infinite recursion in Serializer if there was no int64. Index: serializer.h =================================================================== RCS file: /cvsroot/cppunit/cppunit2/include/opentest/serializer.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** serializer.h 8 Nov 2005 20:25:49 -0000 1.9 --- serializer.h 9 Nov 2005 22:59:09 -0000 1.10 *************** *** 189,194 **** Stream &operator <<( unsigned int value ); #ifndef CPPTL_NO_INT64 ! Stream &operator <<( CppTL::int64_t value ); ! Stream &operator <<( CppTL::uint64_t value ); #endif Stream &operator <<( double value ); --- 189,194 ---- Stream &operator <<( unsigned int value ); #ifndef CPPTL_NO_INT64 ! Stream &operator <<( LargestInt value ); ! Stream &operator <<( LargestUnsignedInt value ); #endif Stream &operator <<( double value ); |