Update of /cvsroot/cpptool/rfta/include/xtl
In directory sc8-pr-cvs1:/tmp/cvs-serv31339/include/xtl
Modified Files:
CStringView.h
Log Message:
* fixed bug for enumerator construction with an empty string
Index: CStringView.h
===================================================================
RCS file: /cvsroot/cpptool/rfta/include/xtl/CStringView.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** CStringView.h 29 Apr 2003 22:02:14 -0000 1.4
--- CStringView.h 3 May 2003 17:34:01 -0000 1.5
***************
*** 240,244 ****
const char *end )
: CStringEnumeratorBase( CStringView( current, end ),
! string_.isEmpty() ? 0 : current )
{
}
--- 240,244 ----
const char *end )
: CStringEnumeratorBase( CStringView( current, end ),
! current )
{
}
|