]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
ctype_noninline.h (ctype<char>::classic_table): Correct return value.
authorLoren J. Rittle <ljrittle@acm.org>
Sun, 23 Mar 2003 04:27:15 +0000 (04:27 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Sun, 23 Mar 2003 04:27:15 +0000 (04:27 +0000)
* config/os/hpux/bits/ctype_noninline.h (ctype<char>::classic_table):
Correct return value.

From-SVN: r64739

libstdc++-v3/ChangeLog
libstdc++-v3/config/os/hpux/bits/ctype_noninline.h

index 12e8c605f314c2087d7caf98615e830bb97c49a7..fca2be5f010b4e19def5c0623b35f582586eefad 100644 (file)
@@ -1,3 +1,8 @@
+2003-03-22  Loren J. Rittle  <ljrittle@acm.org>
+
+       * config/os/hpux/bits/ctype_noninline.h (ctype<char>::classic_table):
+       Correct return value.
+
 2003-02-17  Paolo Carlini  <pcarlini@unitus.it>
 
        PR libstdc++/9169
index 7ec3b30ed9c4025e9729a4c736a0688549a9a9b9..580c7e754c764eff52dd93b6435cff9cf0cede3d 100644 (file)
@@ -1,6 +1,6 @@
 // Locale support -*- C++ -*-
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
@@ -36,7 +36,7 @@
 
   const ctype_base::mask*
   ctype<char>::classic_table() throw()
-  { return 0; }
+  { return __SB_masks; }
 
   ctype<char>::ctype(__c_locale, const mask* __table, bool __del, 
                     size_t __refs)