summaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>2001-03-06 01:31:09 +0000
committerbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>2001-03-06 01:31:09 +0000
commit72b8dc4bd0015b2d65b43533c8b410910ff9475b (patch)
treeee3e0b2a016f46585927b14c7b5077f883be5c27 /libstdc++-v3
parentd00f9a47e14e00fbf1a705d6f8acb8da31aa8332 (diff)
downloadgcc-72b8dc4bd0015b2d65b43533c8b410910ff9475b.tar.gz
2001-03-05 Stephen M. Webb <stephen.webb@cybersafe.com>
* libsupc++/vec.cc (__cxxa_vec_new2): Qualify size_t. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40253 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog6
-rw-r--r--libstdc++-v3/libsupc++/vec.cc2
2 files changed, 6 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 05aef915a81..8de536088db 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,7 @@
+2001-03-05 Stephen M. Webb <stephen.webb@cybersafe.com>
+
+ * libsupc++/vec.cc (__cxxa_vec_new2): Qualify size_t.
+
2001-03-05 Laurynas Biveinis <lauras@softhome.net>
* config/os/djgpp/ctype_base.h (ctype_base): fix __to_type
@@ -13,7 +17,7 @@
(ctype<char>::do_toupper(char *, const char *)): likewise.
(ctype<char>::do_tolower(char)): likewise.
(ctype<char>::do_tolower(char *, const char *)): likewise.
-
+
2001-03-04 Phil Edwards <pme@sources.redhat.com>
http://gcc.gnu.org/ml/libstdc++/2001-03/msg00015.html
diff --git a/libstdc++-v3/libsupc++/vec.cc b/libstdc++-v3/libsupc++/vec.cc
index c07e5ddfa6b..8ee893bb596 100644
--- a/libstdc++-v3/libsupc++/vec.cc
+++ b/libstdc++-v3/libsupc++/vec.cc
@@ -69,7 +69,7 @@ namespace __cxxabiv1
std::size_t padding_size,
void (*constructor) (void *),
void (*destructor) (void *),
- void *(*alloc) (size_t),
+ void *(*alloc) (std::size_t),
void (*dealloc) (void *))
{
std::size_t size = element_count * element_size + padding_size;