Commit a44d2c39 by Gabriel Dos Reis Committed by Gabriel Dos Reis

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
parent be7377b2
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; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment