std_limits.h (numeric_limits<unsigned char>::digits): Fix typo.
authorMark Mitchell <mark@codesourcery.com>
Wed, 25 Sep 2002 18:32:14 +0000 (18:32 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Wed, 25 Sep 2002 18:32:14 +0000 (18:32 +0000)
* include/std/std_limits.h (numeric_limits<unsigned char>::digits):
Fix typo.

From-SVN: r57507

libstdc++-v3/ChangeLog
libstdc++-v3/include/std/std_limits.h

index f396b23..17a8c68 100644 (file)
@@ -1,3 +1,8 @@
+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,
index 275ce62..8912296 100644 (file)
@@ -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;