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 f396b233546d2512df1e4350e4cbc081f65c4038..17a8c687b7bf1b442331c48a3ff2a307ab72b272 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 275ce62a1a4bb0b0b62dbde177cad1f7b068bddb..8912296a397367aa50405a6d20245800cb63906f 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;