[Cppunit-cvs] cppunit2/include/cpput message.h,1.7,1.8
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-03-05 12:21:21
|
Update of /cvsroot/cppunit/cppunit2/include/cpput In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4444/include/cpput Modified Files: message.h Log Message: * added config macro CPPTL_NO_SSTREAM and CPPTL_NO_STL_SEQUENCE_AT for gcc 2.95 * added portability macro CPPTL_AT to access sequence container portably Index: message.h =================================================================== RCS file: /cvsroot/cppunit/cppunit2/include/cpput/message.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** message.h 28 Feb 2005 20:32:52 -0000 1.7 --- message.h 5 Mar 2005 12:21:07 -0000 1.8 *************** *** 83,87 **** CppTL::ConstString at( int index ) const { ! return details_.at( index ); } --- 83,87 ---- CppTL::ConstString at( int index ) const { ! return CPPTL_AT( details_, index ); } |