From: Loren J. Rittle Date: Sat, 22 Mar 2003 18:55:40 +0000 (+0000) Subject: ctype_noninline.h (ctype::classic_table): Correct return value. X-Git-Tag: releases/gcc-3.4.0~7729 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ff81da238f4b978ae656c3ad63430e8d4ec46bcd;p=thirdparty%2Fgcc.git ctype_noninline.h (ctype::classic_table): Correct return value. * config/os/hpux/ctype_noninline.h (ctype::classic_table): Correct return value. From-SVN: r64724 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 30583b0d7adc..fe4ebf4ed5aa 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 7ec3b30ed9c4..a85bc9cff823 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)