Update of /cvsroot/cpptool/rfta/src/rfta
In directory sc8-pr-cvs1:/tmp/cvs-serv32565/src/rfta
Modified Files:
ParserTools.cpp
Log Message:
* fixed bug in tryReadIdentifier
Index: ParserTools.cpp
===================================================================
RCS file: /cvsroot/cpptool/rfta/src/rfta/ParserTools.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** ParserTools.cpp 3 May 2003 17:39:18 -0000 1.6
--- ParserTools.cpp 4 May 2003 06:55:47 -0000 1.7
***************
*** 77,81 ****
Xtl::CStringEnumerator identifierStart = enumerator;
- identifier = enumerator.getString();
if ( isValidIdentifierFirstLetter( *enumerator ) )
{
--- 77,80 ----
***************
*** 85,89 ****
}
! identifier.setEnd(enumerator.getCurrentPos());
return identifier.getLength() != 0;
--- 84,88 ----
}
! identifier = Xtl::CStringView( identifierStart, enumerator );
return identifier.getLength() != 0;
|