diff options
| -rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
| -rw-r--r-- | libstdc++-v3/libsupc++/vec.cc | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 05aef91..8de5360 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 c07e5dd..8ee893b 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; |
