diff options
author | Richard Henderson <rth@redhat.com> | 2001-03-20 11:39:45 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-03-20 11:39:45 -0800 |
commit | f64805b6e956e547b23a5c15ee388817bc30afeb (patch) | |
tree | 32f6bbce1a375e77b29b908ac9e181004cfb79e2 /libstdc++-v3/config | |
parent | 17da603cf2c6e228ca10a9291e590e584b2384d9 (diff) | |
download | gcc-f64805b6e956e547b23a5c15ee388817bc30afeb.tar.gz |
gen-num-limits.cc: Instantiate for wchar_t.
* src/gen-num-limits.cc: Instantiate for wchar_t.
* config/os/aix/bits/ctype_base.h (mask): Use unsigned int.
From-SVN: r40666
Diffstat (limited to 'libstdc++-v3/config')
-rw-r--r-- | libstdc++-v3/config/os/aix/bits/ctype_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/config/os/aix/bits/ctype_base.h b/libstdc++-v3/config/os/aix/bits/ctype_base.h index 166e5d06307..ed414408dbb 100644 --- a/libstdc++-v3/config/os/aix/bits/ctype_base.h +++ b/libstdc++-v3/config/os/aix/bits/ctype_base.h @@ -40,7 +40,7 @@ // NB: Offsets into ctype<char>::_M_table force a particular size // on the mask type. Because of this, we don't use an enum. - typedef unsigned char mask; + typedef unsigned int mask; static const mask upper = _ISUPPER; static const mask lower = _ISLOWER; static const mask alpha = _ISALPHA; |