summaryrefslogtreecommitdiff
path: root/idlc/source/scanner.l
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/source/scanner.l')
-rw-r--r--idlc/source/scanner.l8
1 files changed, 2 insertions, 6 deletions
diff --git a/idlc/source/scanner.l b/idlc/source/scanner.l
index 7519a7b5ab6e..7787124d1d2c 100644
--- a/idlc/source/scanner.l
+++ b/idlc/source/scanner.l
@@ -140,7 +140,7 @@ static double asciiToFloat(const sal_Char *s)
{
double d = 0.0;
double e, k;
- sal_Int32 neg = 0, negexp = 0;
+ sal_Int32 neg = 0;
if (*s == '-')
{
@@ -168,7 +168,6 @@ static double asciiToFloat(const sal_Char *s)
s++;
if (*s == '-')
{
- negexp = 1;
s++;
} else
{
@@ -184,10 +183,7 @@ static double asciiToFloat(const sal_Char *s)
{
for (k = 1; e > 0; k *= 10, e--)
;
- if (negexp)
- d /= k;
- else
- d *= k;
+ d /= k;
}
}
}