mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* util.c (powersOf10): constified.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10401 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5f45a040b8
commit
ef8e63acb5
3 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Tue Jun 27 00:54:08 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* util.c (powersOf10): constified.
|
||||||
|
|
||||||
Mon Jun 26 18:37:44 2006 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
Mon Jun 26 18:37:44 2006 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||||
|
|
||||||
* ext/tk/tcltklib.c (ip_delete): fix SEGV when a slave-ip is
|
* ext/tk/tcltklib.c (ip_delete): fix SEGV when a slave-ip is
|
||||||
|
|
2
eval.c
2
eval.c
|
@ -1,6 +1,6 @@
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
eval.e -
|
eval.c -
|
||||||
|
|
||||||
$Author$
|
$Author$
|
||||||
$Date$
|
$Date$
|
||||||
|
|
6
util.c
6
util.c
|
@ -684,7 +684,8 @@ ruby_getcwd()
|
||||||
#define MDMINEXPT DBL_MIN_EXP
|
#define MDMINEXPT DBL_MIN_EXP
|
||||||
#define MDMAXEXPT DBL_MAX_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 */
|
10.0, /* is 10^2^i. Used to convert decimal */
|
||||||
100.0, /* exponents into floating-point numbers. */
|
100.0, /* exponents into floating-point numbers. */
|
||||||
1.0e4,
|
1.0e4,
|
||||||
|
@ -736,7 +737,8 @@ ruby_strtod(string, endPtr)
|
||||||
* address here. */
|
* address here. */
|
||||||
{
|
{
|
||||||
int sign, expSign = Qfalse;
|
int sign, expSign = Qfalse;
|
||||||
double fraction = 0.0, dblExp, *d;
|
double fraction = 0.0, dblExp;
|
||||||
|
const double *d;
|
||||||
register const char *p;
|
register const char *p;
|
||||||
register int c;
|
register int c;
|
||||||
int exp = 0; /* Exponent read from "EX" field. */
|
int exp = 0; /* Exponent read from "EX" field. */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue