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)