mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* numeric.c (DBL_MAX_10_EXP): fix typo. [ruby-dev:36826]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3209 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ee9d5d41d1
commit
96737482af
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Tue Dec 24 19:19:24 2002 Tietew <tietew@tietew.net>
|
||||||
|
|
||||||
|
* numeric.c (DBL_MAX_10_EXP): fix typo. [ruby-dev:36826]
|
||||||
|
|
||||||
Tue Dec 24 17:02:46 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Tue Dec 24 17:02:46 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* eval.c (rb_undefined): use NoMethodError instead of fatal.
|
* eval.c (rb_undefined): use NoMethodError instead of fatal.
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
#define DBL_MIN_10_EXP (-307)
|
#define DBL_MIN_10_EXP (-307)
|
||||||
#endif
|
#endif
|
||||||
#ifndef DBL_MAX_10_EXP
|
#ifndef DBL_MAX_10_EXP
|
||||||
#define DBL_MAN_10_EXP 308
|
#define DBL_MAX_10_EXP 308
|
||||||
#endif
|
#endif
|
||||||
#ifndef DBL_DIG
|
#ifndef DBL_DIG
|
||||||
#define DBL_DIG 15
|
#define DBL_DIG 15
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue