mirror of
https://github.com/cc65/cc65.git
synced 2025-04-10 17:37:49 +00:00
Allow an optional '+' sign before an exponent of a floating point constant.
git-svn-id: svn://svn.cc65.org/cc65/trunk@3827 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
3f44e21b12
commit
e5782fdc20
@ -634,6 +634,8 @@ static void NumericConst (void)
|
||||
if (CurC == '-') {
|
||||
Sign = -1;
|
||||
NextChar ();
|
||||
} else if (CurC == '+') {
|
||||
NextChar ();
|
||||
}
|
||||
|
||||
/* Read exponent digits. Since we support only 32 bit floats
|
||||
|
Loading…
x
Reference in New Issue
Block a user