2000-01-01 23:35 UTC+0800 Ron Pinkas <ron@profit-master.com>
* source/compiler/harbour.c
* Minor correction in hb_compInlineAdd()
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2000-01-01 23:35 UTC+0800 Ron Pinkas <ron@profit-master.com>
|
||||
|
||||
* source/compiler/harbour.c
|
||||
* Minor correction in hb_compInlineAdd()
|
||||
|
||||
2000-01-01 22:40 UTC+0800 Ron Pinkas <ron@profit-master.com>
|
||||
|
||||
* include/hberrors.h
|
||||
|
||||
@@ -1080,6 +1080,17 @@ void hb_compFunctionAdd( char * szFunName, HB_SYMBOLSCOPE cScope, int iType )
|
||||
PINLINE hb_compInlineAdd( char * szFunName )
|
||||
{
|
||||
PINLINE pInline;
|
||||
PCOMSYMBOL pSym;
|
||||
|
||||
pSym = hb_compSymbolFind( szFunName, NULL );
|
||||
if( ! pSym )
|
||||
{
|
||||
pSym = hb_compSymbolAdd( szFunName, NULL );
|
||||
}
|
||||
if( pSym )
|
||||
{
|
||||
pSym->cScope |= HB_FS_STATIC;
|
||||
}
|
||||
|
||||
pInline = hb_compInlineNew( szFunName );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user