From: Loren J. Rittle Date: Sun, 23 Mar 2003 04:27:15 +0000 (+0000) Subject: ctype_noninline.h (ctype::classic_table): Correct return value. X-Git-Tag: releases/gcc-3.2.3~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0a47037ba575b3654fb2d1c56fd908401f14898;p=thirdparty%2Fgcc.git ctype_noninline.h (ctype::classic_table): Correct return value. * config/os/hpux/bits/ctype_noninline.h (ctype::classic_table): Correct return value. From-SVN: r64739 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 12e8c605f314..fca2be5f010b 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2003-03-22 Loren J. Rittle + + * config/os/hpux/bits/ctype_noninline.h (ctype::classic_table): + Correct return value. + 2003-02-17 Paolo Carlini PR libstdc++/9169 diff --git a/libstdc++-v3/config/os/hpux/bits/ctype_noninline.h b/libstdc++-v3/config/os/hpux/bits/ctype_noninline.h index 7ec3b30ed9c4..580c7e754c76 100644 --- a/libstdc++-v3/config/os/hpux/bits/ctype_noninline.h +++ b/libstdc++-v3/config/os/hpux/bits/ctype_noninline.h @@ -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::classic_table() throw() - { return 0; } + { return __SB_masks; } ctype::ctype(__c_locale, const mask* __table, bool __del, size_t __refs)