19990814-19:50 GMT+1

This commit is contained in:
Viktor Szakats
1999-08-14 18:08:52 +00:00
parent 02d30cca5e
commit 74d7deb4ca
2 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
19990814-19:50 GMT+1 Victor Szel <info@szelvesz.hu>
* source/compiler/harbour.y
! BYTE -> unsigned char
Previous change reverted, and replaced with a NOTE: not to
change this again.
19990814-19:30 GMT+1 Victor Szel <info@szelvesz.hu>
* source/vm/dynsym.c
tests/working/dynsym.prg

View File

@@ -488,7 +488,8 @@ extern int _iState; /* current parser state (defined in harbour.l */
struct
{
double dNumber; /* to hold a double number returned by lex */
BYTE bDec; /* to hold the number of decimal points in the value */
/* NOTE: Intentionally using "unsigned char" instead of "BYTE" */
unsigned char bDec; /* to hold the number of decimal points in the value */
} dNum;
void * pVoid; /* to hold any memory structure we may need */
};