Commit f283dc44 by Stephen M. Webb Committed by Benjamin Kosnik

vec.cc (__cxxa_vec_new2): Qualify size_t.


2001-03-05  Stephen M. Webb  <stephen.webb@cybersafe.com>

	* libsupc++/vec.cc (__cxxa_vec_new2): Qualify size_t.

From-SVN: r40253
parent 5c409ad3
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> 2001-03-05 Laurynas Biveinis <lauras@softhome.net>
* config/os/djgpp/ctype_base.h (ctype_base): fix __to_type * config/os/djgpp/ctype_base.h (ctype_base): fix __to_type
...@@ -13,7 +17,7 @@ ...@@ -13,7 +17,7 @@
(ctype<char>::do_toupper(char *, const char *)): likewise. (ctype<char>::do_toupper(char *, const char *)): likewise.
(ctype<char>::do_tolower(char)): likewise. (ctype<char>::do_tolower(char)): likewise.
(ctype<char>::do_tolower(char *, const char *)): likewise. (ctype<char>::do_tolower(char *, const char *)): likewise.
2001-03-04 Phil Edwards <pme@sources.redhat.com> 2001-03-04 Phil Edwards <pme@sources.redhat.com>
http://gcc.gnu.org/ml/libstdc++/2001-03/msg00015.html http://gcc.gnu.org/ml/libstdc++/2001-03/msg00015.html
......
...@@ -69,7 +69,7 @@ namespace __cxxabiv1 ...@@ -69,7 +69,7 @@ namespace __cxxabiv1
std::size_t padding_size, std::size_t padding_size,
void (*constructor) (void *), void (*constructor) (void *),
void (*destructor) (void *), void (*destructor) (void *),
void *(*alloc) (size_t), void *(*alloc) (std::size_t),
void (*dealloc) (void *)) void (*dealloc) (void *))
{ {
std::size_t size = element_count * element_size + padding_size; std::size_t size = element_count * element_size + padding_size;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment