*** empty log message ***

This commit is contained in:
Viktor Szakats
1999-06-23 00:11:59 +00:00
parent 3248ec9371
commit 33be53336e
2 changed files with 5 additions and 1 deletions

View File

@@ -1,8 +1,10 @@
19990623-01:00 CET Victor Szel <info@szelvesz.hu>
* source/rtl/asort.prg
! source/rtl/asort.prg
Added patch posted by
Dave Pearson <davep@hagbard.demon.co.uk>
quicksort() is STATIC now.
+ source/rtl/types.h
SYMBOL_UNUSED() macro added.
19990622-00:35 Ryszard Glab <rglab@imid.med.pl>
* source/compiler/harbour.y

View File

@@ -71,6 +71,8 @@ typedef HARBOUR ( * HARBOURFUNC )( void );
#define _POSIX_PATH_MAX 255
#endif
#define SYMBOL_UNUSED(symbol) (void)symbol
#define IS_BYREF( p ) ( ( p )->wType & IT_BYREF )
#define IS_OF_TYPE( p, t ) ( ( ( p )->wType & ~IT_BYREF ) == t )
#define IS_ARRAY( p ) IS_OF_TYPE( p, IT_ARRAY )