summaryrefslogtreecommitdiff
path: root/libstdc++-v3/libsupc++/new_opvnt.cc
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@gcc.gnu.org>2000-10-21 16:50:29 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2000-10-21 16:50:29 +0000
commit6b76f569a3f2030616575bb034bf9fce4e04c87e (patch)
tree8b9a189f1f15205c1301f96492baaf74f25c84a7 /libstdc++-v3/libsupc++/new_opvnt.cc
parent80393943c7e03b2f48ed1ac247bbbd10f852598b (diff)
downloadgcc-6b76f569a3f2030616575bb034bf9fce4e04c87e.tar.gz
[multiple changes]
2000-10-21 Benjamin Kosnik <bkoz@purist.soma.redhat.com> * docs/links.html: Add links to defects list, standards FAQ. * testsuite/21_strings/ctor_copy_dtor.cc (test01): Disable tests with string creation that allocate huge ammounts of memory. * include/c/bits/std_cstddef.h: Put size_t, ptrdiff_t in namepace std. 2000-10-21 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr> * libsupc++/exception.cc: Use namespace std. * libsupc++/new: DITTO. * libsupc++/new_op.cc: DITTO. * libsupc++/new_opnt.cc: DITTO. * libsupc++/new_opv.cc: DITTO. * libsupc++/new_opvnt.cc: DITTO. * libsupc++/tinfo.cc: DITTO. * libsupc++/tinfo.h: DITTO. * libsupc++/vec.cc: DITTO. * libsupc++/Makefile.am: Blank lines removal. From-SVN: r36995
Diffstat (limited to 'libstdc++-v3/libsupc++/new_opvnt.cc')
-rw-r--r--libstdc++-v3/libsupc++/new_opvnt.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/libsupc++/new_opvnt.cc b/libstdc++-v3/libsupc++/new_opvnt.cc
index dde0a7c3cf9..12a3c2fc22e 100644
--- a/libstdc++-v3/libsupc++/new_opvnt.cc
+++ b/libstdc++-v3/libsupc++/new_opvnt.cc
@@ -30,7 +30,7 @@
#include "new"
void *
-operator new[] (size_t sz, const std::nothrow_t& nothrow) throw()
+operator new[] (std::size_t sz, const std::nothrow_t& nothrow) throw()
{
return ::operator new(sz, nothrow);
}