mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-16 11:00:24 +08:00
std_limits.h (numeric_limits<float>::radix, [...]): Fix thinko.
* include/bits/std_limits.h (numeric_limits<float>::radix, numeric_limits<float>::epsilon: Fix thinko. From-SVN: r45559
This commit is contained in:
parent
be7377b2cc
commit
a44d2c392f
@ -1,3 +1,8 @@
|
||||
2001-09-12 Gabriel Dos Reis <gdr@merlin.codesourcery.com>
|
||||
|
||||
* include/bits/std_limits.h (numeric_limits<float>::radix,
|
||||
numeric_limits<float>::epsilon: Fix thinko.
|
||||
|
||||
2001-09-10 Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
* configure.in: Fix cross compiling math routines. Correct
|
||||
|
@ -1770,9 +1770,9 @@ namespace std
|
||||
static const bool is_signed = true;
|
||||
static const bool is_integer = false;
|
||||
static const bool is_exact = false;
|
||||
static const int radix = 2;
|
||||
static const int radix = __glibcpp_float_radix;
|
||||
static float epsilon() throw()
|
||||
{ return __glibcpp_float_radix; }
|
||||
{ return __glibcpp_float_epsilon; }
|
||||
static float round_error() throw()
|
||||
{ return __glibcpp_float_round_error; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user