Update of /cvsroot/corelinux/corelinux/src/testdrivers/exmplsupport
In directory slayer.i.sourceforge.net:/tmp/cvs-serv12834
Modified Files:
MazeFactory.cpp
Log Message:
116321 remove const from iterator in non-const method
Index: MazeFactory.cpp
===================================================================
RCS file: /cvsroot/corelinux/corelinux/src/testdrivers/exmplsupport/MazeFactory.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** MazeFactory.cpp 2000/04/21 02:38:47 1.1
--- MazeFactory.cpp 2000/10/07 12:35:23 1.2
***************
*** 404,408 ****
{
REQUIRE( aPtr != NULLPTR );
! NamedAllocatorsConstIterator fItr(theAllocators.find(aName));
if( fItr == theAllocators.end() )
{
--- 404,409 ----
{
REQUIRE( aPtr != NULLPTR );
! NamedAllocatorsIterator fItr(theAllocators.find(aName));
!
if( fItr == theAllocators.end() )
{
|