mirror of
https://github.com/cc65/cc65.git
synced 2025-01-26 17:36:57 +00:00
Removed unused variable.
This commit is contained in:
parent
75d32760ac
commit
f8ffe4c605
@ -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 ();
|
||||
|
Loading…
x
Reference in New Issue
Block a user