1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-30 08:57:49 +00:00

Removed unused variable.

This commit is contained in:
Oliver Schmidt 2013-05-02 14:55:17 +03:00
parent 75d32760ac
commit f8ffe4c605

View File

@ -639,7 +639,6 @@ static void NumericConst (void)
if ((Base == 16 && toupper (CurC) == 'F') ||
(Base == 10 && toupper (CurC) == 'E')) {
int Sign;
unsigned Digits;
unsigned Exp;
@ -647,9 +646,7 @@ static void NumericConst (void)
NextChar ();
/* Read an optional sign */
Sign = 1;
if (CurC == '-') {
Sign = -1;
NextChar ();
} else if (CurC == '+') {
NextChar ();