OSDN Git Service

* config/os/hpux/ctype_noninline.h (ctype<char>::classic_table):
authordanglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 22 Mar 2003 18:55:40 +0000 (18:55 +0000)
committerdanglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 22 Mar 2003 18:55:40 +0000 (18:55 +0000)
Correct return value.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@64724 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 30583b0..fe4ebf4 100644 (file)
@@ -1,3 +1,8 @@
+2003-03-22  Loren J. Rittle  <ljrittle@acm.org>
+
+       * config/os/hpux/ctype_noninline.h (ctype<char>::classic_table):
+       Correct return value.
+
 2003-03-21  Jerry Quinn  <jlquinn@optonline.net>
 
        PR libstdc++/5730
index 7ec3b30..a85bc9c 100644 (file)
@@ -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)