c_locale_generic.cc: Fix.
authorBenjamin Kosnik <bkoz@redhat.com>
Wed, 23 Jan 2002 03:50:49 +0000 (03:50 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Wed, 23 Jan 2002 03:50:49 +0000 (03:50 +0000)
2002-01-22  Benjamin Kosnik  <bkoz@redhat.com>

* config/locale/c_locale_generic.cc: Fix.

From-SVN: r49125

libstdc++-v3/ChangeLog
libstdc++-v3/config/locale/c_locale_generic.cc
libstdc++-v3/include/std/std_ostream.h

index 4776d8c4f804d6b9f577f181c173dacad89f96dc..5e011aa15e17de861c1eebd931540022f5d45215 100644 (file)
@@ -1,3 +1,7 @@
+2002-01-22  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * config/locale/c_locale_generic.cc: Fix.
+
 2002-01-22  Benjamin Kosnik  <bkoz@redhat.com>
 
        * docs/html/22_locale/messages.html: Remove angle brackets.
index 7133cd33edb3ecf95966a46c35127f105fafeef3..6644916b8c0a1b9663fbe9eb3a5a0ac736fd52d8 100644 (file)
@@ -168,10 +168,10 @@ namespace std
           if (__sanity != __s && *__sanity == '\0' && errno == 0)
            __v = __ld;
 #else
-         typedef typename char_traits<_CharT>::int_type int_type;
+         typedef typename char_traits<char>::int_type int_type;
          long double __ld;
          int __p = sscanf(__s, "%Lf", &__ld);
-         if (__p && static_cast<int_type>(__p) != char_traits<_CharT>::eof())
+         if (__p && static_cast<int_type>(__p) != char_traits<char>::eof())
            __v = __ld;
 #endif
          else
index e3ec3260ec0dbccc9345e1940d6282a9a01bbb5c..3bb5e042e5ac6df7191481f8817750d976029b64 100644 (file)
@@ -1,6 +1,7 @@
 // Output streams -*- C++ -*-
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002
+// Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
@@ -50,7 +51,6 @@ namespace std
     class basic_ostream : virtual public basic_ios<_CharT, _Traits>
     {
     public:
-
       // Types (inherited from basic_ios (27.4.4)):
       typedef _CharT                                   char_type;
       typedef typename _Traits::int_type               int_type;