summaryrefslogtreecommitdiff
path: root/libstdc++-v3/config
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-03-20 11:39:45 -0800
committerRichard Henderson <rth@gcc.gnu.org>2001-03-20 11:39:45 -0800
commitf64805b6e956e547b23a5c15ee388817bc30afeb (patch)
tree32f6bbce1a375e77b29b908ac9e181004cfb79e2 /libstdc++-v3/config
parent17da603cf2c6e228ca10a9291e590e584b2384d9 (diff)
downloadgcc-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.h2
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;