2000-10-02 13:00 UTC+0800 Ron Pinkas <ron@profit-master.com>

* source/compiler/hbpcode.c
     * Corrected 1 compiler warning.

   * source/pp/ppcomp.c
     * Cleaned-up and corrected bug when rules files had an #include directive.
     + Added CloseInclude() and moved relevant logic into it.

   * source/pp/ppcore.c
     - Removed unused s_iIncludes, and hb_pp_nEmptyStrings

   * utils/hbpp/hbpp.c
     + Added local hb_pp_nEmptyStrings to hb_pp_Parse()
This commit is contained in:
Ron Pinkas
2000-10-02 20:02:42 +00:00
parent e2d7174201
commit 90dd4a548c
5 changed files with 86 additions and 84 deletions

View File

@@ -233,7 +233,7 @@ void hb_compStrongType( int iSize )
PCOMDECLARED pDeclared;
ULONG ulPos = pFunc->lPCodePos - iSize;
SHORT wVar = 0;
BYTE szType1[64], szType2[64], cType = 0, cSubType1 = 0, cSubType2 = 0;
BYTE szType1[64], szType2[64], cType, cSubType1 = 0, cSubType2 = 0;
BYTE bLast1, bLast2;
/* Make sure we have enough stack space. */
@@ -1459,7 +1459,7 @@ void hb_compStrongType( int iSize )
if( pVar )
{
BYTE cType = pVar->cType;
cType = pVar->cType;
/*printf( "\nPushed: %s Type: %c SubType: %c\n", pVar->szName, pVar->cType, pVar->cType - 100 );*/
@@ -1485,7 +1485,7 @@ void hb_compStrongType( int iSize )
}
else
{
BYTE cType = pSym->cType;
cType = pSym->cType;
/*printf( "\nPushed Symbol: %s Type: %c SubType: %c\n", pSym->szName, pSym->cType, pSym->cType - 100 );*/