Commit 0b4c7d80 by Mark Mitchell Committed by Mark Mitchell

std_limits.h (numeric_limits<unsigned char>::digits): Fix typo.

	* include/std/std_limits.h (numeric_limits<unsigned char>::digits):
	Fix typo.

From-SVN: r57507
parent 1e39b2dd
2002-09-25 Mark Mitchell <mark@codesourcery.com>
* include/std/std_limits.h (numeric_limits<unsigned char>::digits):
Fix typo.
2002-09-23 Richard Henderson <rth@redhat.com>
* include/std/std_limits.h (__glibcpp_plain_char_is_signed,
......
......@@ -378,7 +378,7 @@ namespace std
static unsigned char max() throw()
{ return __SCHAR_MAX__ * 2U + 1; }
static const int digits = __glibcpp_digits10 (unsigned char);
static const int digits = __glibcpp_digits (unsigned char);
static const int digits10 = __glibcpp_digits10 (unsigned char);
static const bool is_signed = false;
static const bool is_integer = true;
......
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