2006-11-08 13:40 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/pp/ppcore.c
* cleaned two warnings generated by old GCC versions
This commit is contained in:
@@ -8,6 +8,10 @@
|
||||
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
|
||||
*/
|
||||
|
||||
|
||||
2006-11-08 17:20 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/source/vm/classes.c
|
||||
! fixed type checking for "string" type. It should be translate
|
||||
to character not symbol item type.
|
||||
|
||||
2006-11-08 13:40 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
|
||||
@@ -1007,7 +1007,7 @@ static void hb_pp_getLine( PHB_PP_STATE pState )
|
||||
ul = 0;
|
||||
}
|
||||
}
|
||||
while( ( pState->pFile->pLineBuf ? pState->pFile->ulLineBufLen :
|
||||
while( ( pState->pFile->pLineBuf ? pState->pFile->ulLineBufLen != 0 :
|
||||
!pState->pFile->fEof ) &&
|
||||
( pState->fCanNextLine ||
|
||||
( pState->iStreamDump && pState->iStreamDump != HB_PP_STREAM_CLIPPER ) ) );
|
||||
@@ -3879,7 +3879,7 @@ static void hb_pp_preprocesToken( PHB_PP_STATE pState )
|
||||
|
||||
if( !pState->pFile->pTokenList )
|
||||
{
|
||||
while( pState->pFile->pLineBuf ? pState->pFile->ulLineBufLen :
|
||||
while( pState->pFile->pLineBuf ? pState->pFile->ulLineBufLen != 0 :
|
||||
!pState->pFile->fEof )
|
||||
{
|
||||
hb_pp_getLine( pState );
|
||||
|
||||
Reference in New Issue
Block a user