From: <bl...@us...> - 2003-04-30 08:21:44
|
Update of /cvsroot/cpptool/rfta/src/rftaparser In directory sc8-pr-cvs1:/tmp/cvs-serv30955/src/rftaparser Modified Files: EnumeratorTest.cpp Log Message: * portability fixes: now compile & works on Sun CC 5.3 & AIX visual age. Index: EnumeratorTest.cpp =================================================================== RCS file: /cvsroot/cpptool/rfta/src/rftaparser/EnumeratorTest.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** EnumeratorTest.cpp 28 Apr 2003 22:18:02 -0000 1.3 --- EnumeratorTest.cpp 30 Apr 2003 08:21:39 -0000 1.4 *************** *** 146,155 **** map.insert( StringIntMap::value_type( "ghi", 345 ) ); - StringEnum e = Xtl::enumStlMapKeys( map ); - RFTA_ASSERT_EQUAL( "abc", e.getNext() ); - RFTA_ASSERT_EQUAL( "def", e.getNext() ); - RFTA_ASSERT_EQUAL( "ghi", e.getNext() ); - checkHasNoMoreElements( e ); - StringIntMap::iterator itEnd = map.end(); --itEnd; --- 146,149 ---- |