diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-06-26 15:54:22 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-06-26 15:54:22 +0000 |
| commit | 01c1c880d4be63338acc4b6c8a5f6fcbbadc7153 (patch) | |
| tree | 214f3b84e440f8ddfd91291c273dc46929d99ad1 /util.c | |
| parent | 715499f90fbec2dc9ff7ef3e3c9c7ad812986303 (diff) | |
| download | ruby-01c1c880d4be63338acc4b6c8a5f6fcbbadc7153.tar.gz ruby-01c1c880d4be63338acc4b6c8a5f6fcbbadc7153.tar.xz ruby-01c1c880d4be63338acc4b6c8a5f6fcbbadc7153.zip | |
* util.c (powersOf10): constified.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10401 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'util.c')
| -rw-r--r-- | util.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -684,7 +684,8 @@ ruby_getcwd() #define MDMINEXPT DBL_MIN_EXP #define MDMAXEXPT DBL_MAX_EXP -static double powersOf10[] = { /* Table giving binary powers of 10. Entry */ +static const +double powersOf10[] = { /* Table giving binary powers of 10. Entry */ 10.0, /* is 10^2^i. Used to convert decimal */ 100.0, /* exponents into floating-point numbers. */ 1.0e4, @@ -736,7 +737,8 @@ ruby_strtod(string, endPtr) * address here. */ { int sign, expSign = Qfalse; - double fraction = 0.0, dblExp, *d; + double fraction = 0.0, dblExp; + const double *d; register const char *p; register int c; int exp = 0; /* Exponent read from "EX" field. */ |
