mirror of
https://github.com/cc65/cc65.git
synced 2025-08-10 04:25:21 +00:00
Removed unused variable.
This commit is contained in:
@@ -639,7 +639,6 @@ static void NumericConst (void)
|
|||||||
if ((Base == 16 && toupper (CurC) == 'F') ||
|
if ((Base == 16 && toupper (CurC) == 'F') ||
|
||||||
(Base == 10 && toupper (CurC) == 'E')) {
|
(Base == 10 && toupper (CurC) == 'E')) {
|
||||||
|
|
||||||
int Sign;
|
|
||||||
unsigned Digits;
|
unsigned Digits;
|
||||||
unsigned Exp;
|
unsigned Exp;
|
||||||
|
|
||||||
@@ -647,9 +646,7 @@ static void NumericConst (void)
|
|||||||
NextChar ();
|
NextChar ();
|
||||||
|
|
||||||
/* Read an optional sign */
|
/* Read an optional sign */
|
||||||
Sign = 1;
|
|
||||||
if (CurC == '-') {
|
if (CurC == '-') {
|
||||||
Sign = -1;
|
|
||||||
NextChar ();
|
NextChar ();
|
||||||
} else if (CurC == '+') {
|
} else if (CurC == '+') {
|
||||||
NextChar ();
|
NextChar ();
|
||||||
|
Reference in New Issue
Block a user