From ff81da238f4b978ae656c3ad63430e8d4ec46bcd Mon Sep 17 00:00:00 2001 From: "Loren J. Rittle" Date: Sat, 22 Mar 2003 18:55:40 +0000 Subject: [PATCH] ctype_noninline.h (ctype::classic_table): Correct return value. * config/os/hpux/ctype_noninline.h (ctype::classic_table): Correct return value. From-SVN: r64724 --- libstdc++-v3/ChangeLog | 5 +++++ libstdc++-v3/config/os/hpux/ctype_noninline.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 30583b0d7ad..fe4ebf4ed5a 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2003-03-22 Loren J. Rittle + + * config/os/hpux/ctype_noninline.h (ctype::classic_table): + Correct return value. + 2003-03-21 Jerry Quinn PR libstdc++/5730 diff --git a/libstdc++-v3/config/os/hpux/ctype_noninline.h b/libstdc++-v3/config/os/hpux/ctype_noninline.h index 7ec3b30ed9c..a85bc9cff82 100644 --- a/libstdc++-v3/config/os/hpux/ctype_noninline.h +++ b/libstdc++-v3/config/os/hpux/ctype_noninline.h @@ -36,7 +36,7 @@ const ctype_base::mask* ctype::classic_table() throw() - { return 0; } + { return __SB_masks; } ctype::ctype(__c_locale, const mask* __table, bool __del, size_t __refs)