diff options
author | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-22 18:55:40 +0000 |
---|---|---|
committer | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-22 18:55:40 +0000 |
commit | d9ce17a542c7c5f1294255b8c1429f0a2f7046d5 (patch) | |
tree | 65f5814f75d35c43d5ce3c8b10bf68bf533be807 /libstdc++-v3/config/os/hpux | |
parent | ece0fa594e38c308a69f183842996f8843dd68d1 (diff) | |
download | gcc-d9ce17a542c7c5f1294255b8c1429f0a2f7046d5.tar.gz |
* config/os/hpux/ctype_noninline.h (ctype<char>::classic_table):
Correct return value.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@64724 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/config/os/hpux')
-rw-r--r-- | libstdc++-v3/config/os/hpux/ctype_noninline.h | 2 |
1 files changed, 1 insertions, 1 deletions
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<char>::classic_table() throw() - { return 0; } + { return __SB_masks; } ctype<char>::ctype(__c_locale, const mask* __table, bool __del, size_t __refs) |